Sha256: 7cf8340b8bf68a0219ab0ba99a8f8f4a83cebe726a76279fc9c701d7acd80d6a
Contents?: true
Size: 1.77 KB
Versions: 1
Compression:
Stored size: 1.77 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 patch post put trace} HTTPS = 'https' NO_ENTITY = [204, 205, 304].freeze REDACTED = 'REDACTED' VALID_CONNECTION_KEYS = [ :body, :captures, :chunk_size, :client_key, :client_cert, :certificate, :private_key, :connect_timeout, :connection, :debug_request, :debug_response, :error, :exception, :expects, :family, :headers, :host, :idempotent, :instrumentor, :instrumentor_name, :method, :middlewares, :mock, :nonblock, :omit_default_port, :password, :path, :pipeline, :port, :proxy, :query, :read_timeout, :request_block, :response, :response_block, :retries_remaining, :retry_limit, :scheme, :tcp_nodelay, :uri_parser, :user, :ssl_ca_file, :ssl_verify_peer, :stack, :write_timeout ] VERSION = '0.25.1' 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.25.1 | lib/excon/constants.rb |