summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDavid Rodriguez <deivid.rodriguez@riseup.net>2021-10-20 20:58:51 +0200
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2021-10-25 20:48:50 +0900
commit7b821bc9b5c4505d4202536d6cbaa6df60c7e737 (patch)
tree2d6d8291c06057593e002e2a7b66b31afd65a86e /lib
parent9b1b1718666ab73bb2a9200a074b8c836cde8b30 (diff)
[rubygems/rubygems] Add missing requires
These methods rescue a constant defined by `rubygems/remote_fetcher`, so they should technically require it. The require is provided by `gem_remote_fetcher` anyways but I was running a unit spec that stubs that method, so I was getting an undefined constant error hiding another error. https://github.com/rubygems/rubygems/commit/8bedae4034
Diffstat (limited to 'lib')
-rw-r--r--lib/bundler/rubygems_integration.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/bundler/rubygems_integration.rb b/lib/bundler/rubygems_integration.rb
index ba4317775e..81050a6e58 100644
--- a/lib/bundler/rubygems_integration.rb
+++ b/lib/bundler/rubygems_integration.rb
@@ -488,6 +488,7 @@ module Bundler
end
def fetch_specs(remote, name)
+ require "rubygems/remote_fetcher"
path = remote.uri.to_s + "#{name}.#{Gem.marshal_version}.gz"
fetcher = gem_remote_fetcher
fetcher.headers = { "X-Gemfile-Source" => remote.original_uri.to_s } if remote.original_uri
@@ -506,6 +507,7 @@ module Bundler
end
def download_gem(spec, uri, path)
+ require "rubygems/remote_fetcher"
uri = Bundler.settings.mirror_for(uri)
fetcher = gem_remote_fetcher
fetcher.headers = { "X-Gemfile-Source" => spec.remote.original_uri.to_s } if spec.remote.original_uri