class Dotpack::Cli::App
Public Instance Methods
clear()
click to toggle source
# File lib/dotpack/cli/app.rb, line 29 def clear Runner.clear end
relink()
click to toggle source
# File lib/dotpack/cli/app.rb, line 14 def relink Runner.clear runner = Runner.new Package.all.each do |package| runner.start package end end
update()
click to toggle source
# File lib/dotpack/cli/app.rb, line 23 def update repos = Dotpack::Repo.all relink if repos.map(&:update).any? end