Sha256: b243d4f442650c46c24f39f3af2204c91c78422f9b2944c561159517d192bf2c
Contents?: true
Size: 1.05 KB
Versions: 163
Compression:
Stored size: 1.05 KB
Contents
require 'seahorse/client/net_http/handler' module Seahorse module Client module Plugins class NetHttp < Plugin option(:http_proxy, default: nil, doc_type: String, docstring: '') option(:http_open_timeout, default: 15, doc_type: Integer, docstring: '') option(:http_read_timeout, default: 60, doc_type: Integer, docstring: '') option(:http_idle_timeout, default: 5, doc_type: Integer, docstring: '') option(:http_continue_timeout, default: 1, doc_type: Integer, docstring: '') option(:http_wire_trace, default: false, doc_type: 'Boolean', docstring: '') option(:ssl_verify_peer, default: true, doc_type: 'Boolean', docstring: '') option(:ssl_ca_bundle, default: nil, doc_type: String, docstring: '') option(:ssl_ca_directory, default: nil, doc_type: String, docstring: '') option(:ssl_ca_store, default: nil, doc_type: String, docstring: '') option(:logger) # for backwards compat handler(Client::NetHttp::Handler, step: :send) end end end end
Version data entries
163 entries across 163 versions & 1 rubygems