Sha256: d50704fc22373a380788c2f7d41d789d73aeda076710ab915a563b6050fec9c3
Contents?: true
Size: 1.88 KB
Versions: 2
Compression:
Stored size: 1.88 KB
Contents
require 'java' require 'uri' require 'cgi' jars = ["httpcore-4.3.3", "httpclient-4.3.6", "commons-logging-1.1.3", "commons-codec-1.6.jar", "httpmime-4.3.6.jar"] jars.each do |jar| begin require_relative "./jar/#{jar}" rescue LoadError raise "Unable to load #{jar}; is there another version of it in your classpath?" end end # 4.3.x require_relative "./jar/manticore-ext" org.manticore.Manticore.new.load(JRuby.runtime, false) require_relative "./manticore/version" require "addressable/uri" # HTTP client with the body of a lion and the head of a man. Or more simply, the power of Java # with the beauty of Ruby. module Manticore # General base class for all Manticore exceptions class ManticoreException < StandardError; end # Exception thrown if you attempt to read from a closed Response stream class StreamClosedException < ManticoreException; end # Friendly wrapper for various Java ClientProtocolExceptions class ClientProtocolException < ManticoreException; end # DNS resolution failure class ResolutionFailure < ManticoreException; end # Is something flat out malformed (bad port number?) class InvalidArgumentException < ManticoreException; end # Socket breaks, etc class SocketException < ManticoreException; end # General Timeout exception thrown for various Manticore timeouts class Timeout < ManticoreException; end class SocketTimeout < Timeout; end class ConnectTimeout < Timeout; end # Did we miss an exception? We may still want to catch it class UnknownException < ManticoreException; end require_relative "./manticore/java_extensions" require_relative './manticore/client/proxies' require_relative './manticore/client' require_relative './manticore/response' require_relative './manticore/stubbed_response' require_relative './manticore/cookie' require_relative './manticore/facade' include Facade include_http_client end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
manticore-0.4.3-java | lib/manticore.rb |
manticore-0.4.2-java | lib/manticore.rb |