Method: Forger::Command.command_help

Defined in:
lib/forger/command.rb

.command_help(shell, command_name) ⇒ Object

Override command_help to include the description at the top of the long_description.



48
49
50
51
52
53
# File 'lib/forger/command.rb', line 48

def command_help(shell, command_name)
  meth = normalize_command_name(command_name)
  command = all_commands[meth]
  alter_command_description(command)
  super
end