# File lib/support/help.rb, line 6definitialize(*omit_from_list)
@omit_from_list = omit_from_listsuper(:help,'Shows list of commands or help for one command','[command]')
end
Public Instance Methods
execute(global_options,options,arguments)click to toggle source
# File lib/support/help.rb, line 11defexecute(global_options,options,arguments)
ifarguments.empty?list_global_flagslist_commandselselist_one_command_help(arguments[0])
endend