2015-12-16 05:07:31 +00:00
|
|
|
# frozen_string_literal: false
|
2014-09-14 03:30:02 +00:00
|
|
|
class Gem::Request::HTTPSPool < Gem::Request::HTTPPool # :nodoc:
|
|
|
|
private
|
|
|
|
|
|
|
|
def setup_connection connection
|
|
|
|
Gem::Request.configure_connection_for_https(connection, @cert_files)
|
|
|
|
super
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|