Sha256: 5dc328ed7ecf15a3d8c2f78c7cc1afb6e77b3d56d7aefa29c6d0b2e8eca1a31f

Contents?: true

Size: 541 Bytes

Versions: 16

Compression:

Stored size: 541 Bytes

Contents

#!/usr/bin/env ruby

$LOAD_PATH << ::File.expand_path('../lib', __FILE__)

require 'proxy_tester'

begin
  ProxyTester::Cli::Main.start
rescue StandardError => e
  ProxyTester::Actions::HandleError.new(e).run
rescue Interrupt => e
  ProxyTester::Actions::HandleError.new(e).run
rescue SignalException => e
  exception = case e.signm
              when 'SIGTERM'
                ProxyTester::Exceptions::SIGTERM.new(e.message)
              else
                e
              end

  ProxyTester::Actions::HandleError.new(exception).run
end

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
proxy_tester-0.1.8 bin/proxy_tester
proxy_tester-0.1.6 bin/proxy_tester
proxy_tester-0.1.5 bin/proxy_tester
proxy_tester-0.1.4 bin/proxy_tester
proxy_tester-0.1.3 bin/proxy_tester
proxy_tester-0.1.2 bin/proxy_tester
proxy_tester-0.1.1 bin/proxy_tester
proxy_tester-0.1.0 bin/proxy_tester
proxy_tester-0.0.9 bin/proxy_tester
proxy_tester-0.0.8 bin/proxy_tester
proxy_tester-0.0.7 bin/proxy_tester
proxy_tester-0.0.6 bin/proxy_tester
proxy_tester-0.0.5 bin/proxy_tester
proxy_tester-0.0.4 bin/proxy_tester
proxy_tester-0.0.3 bin/proxy_tester
proxy_tester-0.0.2 bin/proxy_tester