summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2023-04-11 19:15:25 +0900
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2023-04-11 19:15:25 +0900
commit0196c8527b619b685399e9a3ce6b5b4c7e30368a (patch)
tree68d3403e2dda949ef02140c245d60a1e27c8ffa8 /spec
parentd89cc317c642848008f5b17a82196d25ddcdf124 (diff)
downloadruby-0196c8527b619b685399e9a3ce6b5b4c7e30368a.tar.gz
Removed file that is part of d89cc317c642848008f5b17a82196d25ddcdf124
Diffstat (limited to 'spec')
-rw-r--r--spec/bundler/support/api_request_limit_hax.rb16
1 files changed, 0 insertions, 16 deletions
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