aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bundler/vendored_persistent.rb
blob: 729ac6b6f55931b911418f0ce2e7083c94f8a5fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: true
# We forcibly require OpenSSL, because net/http/persistent will only autoload
# it. On some Rubies, autoload fails but explicit require succeeds.
begin
  require "openssl"
rescue LoadError
  # some Ruby builds don't have OpenSSL
end
module Bundler
  module Persistent
    module Net
      module HTTP
      end
    end
  end
end
require "bundler/vendor/net-http-persistent/lib/net/http/persistent"