class TerraspaceBundler::CLI::Bundle
Public Instance Methods
info(mod)
click to toggle source
# File lib/terraspace_bundler/cli/bundle.rb, line 17 def info(mod) TB::Info.new(options.merge(mod: mod)).run end
install()
click to toggle source
# File lib/terraspace_bundler/cli/bundle.rb, line 24 def install TB::Runner.new(options).run end
list()
click to toggle source
# File lib/terraspace_bundler/cli/bundle.rb, line 10 def list TB::List.new(options).run end
purge_cache()
click to toggle source
# File lib/terraspace_bundler/cli/bundle.rb, line 31 def purge_cache PurgeCache.new(options).run end
update(*mods)
click to toggle source
# File lib/terraspace_bundler/cli/bundle.rb, line 38 def update(*mods) TB.update_mode = true TB::Runner.new(options.merge(mods: mods)).run end