class Mysh::HelpCommand
The mysh internal help command.
Public Instance Methods
process_command(input)
click to toggle source
Execute a help command by routing it to a sub-command. Endemic Code Smells :reek:UtilityFunction
# File lib/mysh/internal/help.rb, line 29 def process_command(input) args = input.args HELP[args[0] || ""].process_command(args) end