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