class YARD::CLI::Help

@since 0.6.0
Handles help for commands

def description; "Retrieves help for a command" end

def description; "Retrieves help for a command" end

def run(*args)

def run(*args)
  cmd = args.first && CommandParser.commands[args.first.to_sym]
  if cmd
    cmd.run('--help')
  else
    log.puts "Command #{args.first} not found." if args.first
    CommandParser.run('--help')
  end
end