summaryrefslogtreecommitdiff
path: root/lib/bundler/vendored_timeout.rb
blob: 9b2507c0cc8a13f1c6272c1f74b955928e8ff21d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true

begin
  require "rubygems/vendored_timeout"
rescue LoadError
  begin
    require "rubygems/timeout"
  rescue LoadError
    require "timeout"
    Gem::Timeout = Timeout
  end
end