From 8c98f7be577389f01a90c7a39d693173d432e9e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Rodr=C3=ADguez?= Date: Fri, 29 Jul 2022 22:39:38 +0200 Subject: [PATCH] [rubygems/rubygems] Remove unnecessary local variable https://github.com/rubygems/rubygems/commit/a997210473 --- lib/bundler/lazy_specification.rb | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/lib/bundler/lazy_specification.rb b/lib/bundler/lazy_specification.rb index 7245692546..05925e3e79 100644 --- a/lib/bundler/lazy_specification.rb +++ b/lib/bundler/lazy_specification.rb @@ -96,12 +96,11 @@ module Bundler else source.specs.search(self) end - best_installable_candidate = candidates.reverse.find do |spec| + search = candidates.reverse.find do |spec| spec.is_a?(StubSpecification) || (spec.required_ruby_version.satisfied_by?(Gem.ruby_version) && spec.required_rubygems_version.satisfied_by?(Gem.rubygems_version)) - end - search = best_installable_candidate || candidates.last + end || candidates.last search.dependencies = dependencies if search && (search.is_a?(RemoteSpecification) || search.is_a?(EndpointSpecification)) search end