Sha256: 63d7d6deb94ea6a24d70df7b7be33888740c90338473f8f54450b7ec1f20f500
Contents?: true
Size: 869 Bytes
Versions: 12
Compression:
Stored size: 869 Bytes
Contents
default: &default # The underlying client library that actually makes an HTTP request. # Available adapters are :net_http, :net_http_persistent, :curb, and :test. # # It is set to :net_http by default. adapter: :net_http # HTTP timeout set for the adapter in seconds. This will be set to both # `read_timeout` and `write_timeout` and there is no way to configure them # with a different value as of writing (PRs welcome!) # # It is set to 10 by default. timeout: 10 # The number of keep-alive connections. The `:net_http` adapter will ignore # this option. # # It is set to 25 by default. pool_size: 25 development: <%= file_name %>: <<: *default url: <%= endpoint_url %> test: <%= file_name %>: <<: *default url: <%= endpoint_url %> production: <%= file_name %>: <<: *default url: <%= endpoint_url %>
Version data entries
12 entries across 12 versions & 1 rubygems