class Thor::Group

def help(shell, options={})


short:: When true, shows only usage.
==== Options

Prints help information.
def help(shell, options={})
  if options[:short]
    shell.say banner
  else
    shell.say "Usage:"
    shell.say "  #{banner}"
    shell.say
    class_options_help(shell)
    shell.say self.desc if self.desc
  end
end