# File lib/rubyrep/proxy_runner.rb, line 75
    def self.run(args)
      runner = ProxyRunner.new
      
      options, status = runner.get_options(args)
      if options
        url = runner.build_url(options)
        runner.start_server(url)
      end
      status
    end