Files
server/usr/lib/ruby/3.2.0/rubygems/request/https_pool.rb
2026-01-07 20:52:11 +01:00

11 lines
235 B
Ruby

# frozen_string_literal: true
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