# File lib/rhc/command_runner.rb, line 117 def create_default_commands command 'help options' do |c| c.description = "Display all global options and information about configuration" c.when_called do |args, options| say help_formatter.render_options self 0 end end command :help do |c| c.syntax = '<command>' c.description = 'Display global or <command> help documentation.' c.when_called(&method(:run_help)) end end