2015-12-16 00:07:31 -05:00
|
|
|
# frozen_string_literal: false
|
2014-09-13 23:30:02 -04: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
|
|
|
|
|
|
|
|
|