[rubygems/rubygems] Remove unnecessary special case for Bundler

https://github.com/rubygems/rubygems/commit/2777e79b8e
This commit is contained in:
David Rodríguez 2022-07-23 09:19:34 +02:00 коммит произвёл git
Родитель 6ec8f684aa
Коммит 7cc5a657ee
2 изменённых файлов: 2 добавлений и 8 удалений

Просмотреть файл

@ -524,10 +524,8 @@ module Bundler
end
end
unless specs["bundler"].any?
bundler = sources.metadata_source.specs.search(Gem::Dependency.new("bundler", VERSION)).last
specs["bundler"] = bundler
end
bundler = sources.metadata_source.specs.search(Gem::Dependency.new("bundler", VERSION)).last
specs["bundler"] = bundler
specs
end

Просмотреть файл

@ -35,10 +35,6 @@ module Bundler
end
end
if spec = lookup["bundler"].first
specs << spec
end
specs
end