class Commands::Help

Help command

Public Class Methods

command_name() click to toggle source
# File lib/gdsh/help.rb, line 8
def self.command_name
  'help'
end
function() click to toggle source
# File lib/gdsh/help.rb, line 12
def self.function
  'Returns this usage information.'
end

Public Instance Methods

execute() click to toggle source
# File lib/gdsh/help.rb, line 16
def execute
  Commands.usage
end