summaryrefslogtreecommitdiff
path: root/lib/rubygems/request/https_pool.rb
blob: 2e3da0a44ef440599c05e45cafae3e40225ad164 (plain)
1
2
3
4
5
6
7
8
9
10
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