Method: Ufo::Command.command_help

Defined in:
lib/ufo/command.rb

.command_help(shell, command_name) ⇒ Object

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



137
138
139
140
141
142
# File 'lib/ufo/command.rb', line 137

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