summaryrefslogtreecommitdiff
path: root/spec/bundler/support/api_request_limit_hax.rb
blob: 37ff0203b327d150e9993952b11718db2f21c7a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# frozen_string_literal: true

if ENV["BUNDLER_SPEC_API_REQUEST_LIMIT"]
  require_relative "path"
  require "bundler/source"
  require "bundler/source/rubygems"

  module Bundler
    class Source
      class Rubygems < Source
        remove_const :API_REQUEST_LIMIT
        API_REQUEST_LIMIT = ENV["BUNDLER_SPEC_API_REQUEST_LIMIT"].to_i
      end
    end
  end
end