method
show_modules
v2_6_3 -
Show latest stable
- Class:
Bundler::Thor::Runner
show_modules()private
No documentation available.
# File lib/bundler/vendor/thor/lib/thor/runner.rb, line 310
def show_modules #:nodoc:
info = []
labels = %(Modules Namespaces)
info << labels
info << ["-" * labels[0].size, "-" * labels[1].size]
thor_yaml.each do |name, hash|
info << [name, hash[:namespaces].join(", ")]
end
print_table info
say ""
end