Sha256: e66caeca98612146f02aa3412cd7e52c3a63d21eaa17d3914ac39c4ae24210a8
Contents?: true
Size: 1.62 KB
Versions: 1
Compression:
Stored size: 1.62 KB
Contents
module Excon CR_NL = "\r\n" DEFAULT_CA_FILE = File.expand_path(File.join(File.dirname(__FILE__), "..", "..", "data", "cacert.pem")) DEFAULT_CHUNK_SIZE = 1048576 # 1 megabyte # avoid overwrite if somebody has redefined unless const_defined?(:CHUNK_SIZE) CHUNK_SIZE = DEFAULT_CHUNK_SIZE end DEFAULT_NONBLOCK = OpenSSL::SSL::SSLSocket.public_method_defined?(:connect_nonblock) && OpenSSL::SSL::SSLSocket.public_method_defined?(:read_nonblock) && OpenSSL::SSL::SSLSocket.public_method_defined?(:write_nonblock) DEFAULT_RETRY_LIMIT = 4 FORCE_ENC = CR_NL.respond_to?(:force_encoding) HTTP_1_1 = " HTTP/1.1\r\n" HTTP_VERBS = %w{connect delete get head options post put trace patch} HTTPS = 'https' NO_ENTITY = [204, 205, 304].freeze REDACTED = 'REDACTED' VALID_CONNECTION_KEYS = [ :body, :captures, :chunk_size, :connect_timeout, :connection, :error, :exception, :expects, :family, :headers, :host, :idempotent, :instrumentor, :instrumentor_name, :method, :middlewares, :mock, :nonblock, :password, :path, :pipeline, :port, :proxy, :query, :read_timeout, :request_block, :response, :response_block, :retries_remaining, :retry_limit, :scheme, :uri_parser, :user, :ssl_ca_file, :ssl_verify_peer, :stack, :write_timeout ] VERSION = '0.19.0' unless ::IO.const_defined?(:WaitReadable) class ::IO module WaitReadable; end end end unless ::IO.const_defined?(:WaitWritable) class ::IO module WaitWritable; end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
excon-0.19.0 | lib/excon/constants.rb |