# File lib/rubyrep/command_runner.rb, line 130
    def self.run(args)
      if args[0] == 'help' or args[0] == '--help'
        $stderr.puts("Usage: \#{$0} help [command]\n\nShows the help for the specified command.\n")
        0
      else
        CommandRunner.run([args[0], '--help'])
      end
    end