Sha256: 103e3ec748b6072b59ba5d4472b22431371c361802a948063c4b5b718422839b
Contents?: true
Size: 560 Bytes
Versions: 12
Compression:
Stored size: 560 Bytes
Contents
module TerraspaceBundler class List < TB::CLI::Base def run file = TB.config.lockfile unless File.exist?(file) logger.info "No #{file} found".color(:red) logger.info "Maybe run: terraspace bundle" return end logger.info "Modules included by #{file}\n\n" lockfile.mods.each do |mod| logger.info " #{mod.name}" end logger.info "\nUse `terraspace bundle info` to print more detailed information about a module" end def lockfile Lockfile.instance end end end
Version data entries
12 entries across 12 versions & 1 rubygems