method
show_help
v2_1_10 -
Show latest stable
- Class:
Gem::Commands::HelpCommand
show_help()public
No documentation available.
# File lib/rubygems/commands/help_command.rb, line 194
def show_help # :nodoc:
command = @command_manager[options[:help]]
if command then
# help with provided command
command.invoke("--help")
else
alert_error "Unknown command #{options[:help]}. Try 'gem help commands'"
end
end