class Velcro::Status::Dotfiles
Find the current status of your dotfiles directory
Public Class Methods
installed?()
click to toggle source
# File lib/velcro/status/dotfiles.rb, line 15 def self.installed? File.exist? Velcro.config.dotfiles end
print()
click to toggle source
# File lib/velcro/status/dotfiles.rb, line 5 def self.print printf '## Dotfiles - ' if installed? puts 'Installed' puts "=> #{Velcro.config.dotfiles}" else puts 'Not Installed' end end