class YARD::CLI::Help

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