diff options
author | David RodrÃguez <deivid.rodriguez@riseup.net> | 2019-12-03 16:28:32 +0100 |
---|---|---|
committer | David RodrÃguez <deivid.rodriguez@riseup.net> | 2019-12-06 23:52:40 +0100 |
commit | ae71ea0380a5ee0f7d52a6784f2a76ed46abf133 (patch) | |
tree | 18229bb09aa221ccf36bf7155b319462ad9cf157 /lib/bundler.rb | |
parent | 34d7fa5462c50701cdae896d9cf004c050f5bfe2 (diff) | |
download | bundler-ae71ea0380a5ee0f7d52a6784f2a76ed46abf133.tar.gz |
Remove unnecessary code copied from rubygems
I think the comment is misleading and it referred to rubygems, not
gemstash, because this code is about the client side of things. If this
is correct, we can drop it because we don't support any rubygems version
under 2.5.2, and the fix was introduced in rubygems 2.5.
Diffstat (limited to 'lib/bundler.rb')
-rw-r--r-- | lib/bundler.rb | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/bundler.rb b/lib/bundler.rb index 3b494a6cdf..df345539c8 100644 --- a/lib/bundler.rb +++ b/lib/bundler.rb @@ -50,7 +50,6 @@ module Bundler autoload :FeatureFlag, File.expand_path("bundler/feature_flag", __dir__) autoload :GemHelper, File.expand_path("bundler/gem_helper", __dir__) autoload :GemHelpers, File.expand_path("bundler/gem_helpers", __dir__) - autoload :GemRemoteFetcher, File.expand_path("bundler/gem_remote_fetcher", __dir__) autoload :GemVersionPromoter, File.expand_path("bundler/gem_version_promoter", __dir__) autoload :Graph, File.expand_path("bundler/graph", __dir__) autoload :Index, File.expand_path("bundler/index", __dir__) |