From 0196c8527b619b685399e9a3ce6b5b4c7e30368a Mon Sep 17 00:00:00 2001 From: Hiroshi SHIBATA Date: Tue, 11 Apr 2023 19:15:25 +0900 Subject: [PATCH] Removed file that is part of d89cc317c642848008f5b17a82196d25ddcdf124 --- spec/bundler/support/api_request_limit_hax.rb | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 spec/bundler/support/api_request_limit_hax.rb diff --git a/spec/bundler/support/api_request_limit_hax.rb b/spec/bundler/support/api_request_limit_hax.rb deleted file mode 100644 index 37ff0203b3..0000000000 --- a/spec/bundler/support/api_request_limit_hax.rb +++ /dev/null @@ -1,16 +0,0 @@ -# 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