Files
i-mic-fps/lib/ui/commands/help_command.rb

24 lines
368 B
Ruby

class IMICFPS
class Commands
class HelpCommand < Command
def initialize
end
def group
:global
end
def command
:help
end
def handle(arguments, console)
console.stdin(usage)
end
def usage
"HELP\ncommand [arguments]\ncommand subcommand [argument]"
end
end
end
end