Sha256: 2c62481c4de80534656e80c5f386c9c246f04b891d390655ffaf5ebdf4c89fa1
Contents?: true
Size: 506 Bytes
Versions: 30
Compression:
Stored size: 506 Bytes
Contents
require 'fig/command/action' module Fig; end class Fig::Command; end module Fig::Command::Action; end module Fig::Command::Action::Role; end module Fig::Command::Action::Role::ListDependenciesInATree def execute() walk_dependency_tree( @execution_context.base_package, base_display_config_names() ) do |package, config_name, depth| print ' ' * (depth * 4) puts package.to_s_with_config(config_name) end return Fig::Command::Action::EXIT_SUCCESS end end
Version data entries
30 entries across 30 versions & 1 rubygems