Sha256: dd2bf0b3f0fcf41e3c6057c500f6b7d63b786b1741f5d587205a332b4b2670c9
Contents?: true
Size: 964 Bytes
Versions: 1043
Compression:
Stored size: 964 Bytes
Contents
module Seahorse module Client module Plugins # @seahorse.client.option [String] :http_proxy # @seahorse.client.option [Integer] :http_open_timeout (15) # @seahorse.client.option [Integer] :http_read_timeout (60) # @seahorse.client.option [Integer] :http_idle_timeout (5) # @seahorse.client.option [Float] :http_continue_timeout (1) # @seahorse.client.option [Boolean] :http_wire_trace (false) # @seahorse.client.option [Logger] :logger (nil) # @seahorse.client.option [Boolean] :ssl_verify_peer (true) # @seahorse.client.option [String] :ssl_ca_bundle # @seahorse.client.option [String] :ssl_ca_directory # @seahorse.client.option [String] :ssl_ca_store class NetHttp < Plugin Client::NetHttp::ConnectionPool::OPTIONS.each_pair do |name, default| option(name, default) end handler(Client::NetHttp::Handler, step: :send) end end end end
Version data entries
1,043 entries across 1,043 versions & 2 rubygems