Method: Thor.command_help_string
- Defined in:
- lib/idcf/cli/gem_ext/thor/init_util.rb
.command_help_string(command) ⇒ Object
56 57 58 59 60 61 62 |
# File 'lib/idcf/cli/gem_ext/thor/init_util.rb', line 56 def command_help_string(command) result = [command] map.each do |k, v| result << k if v.to_s == command.to_s end result.join('/') end |