From 5487e76374c5ee247b0f5a2867a6dc1319d98e0e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Rodr=C3=ADguez?= Date: Fri, 29 Jul 2022 21:17:59 +0200 Subject: [PATCH] [rubygems/rubygems] Prefer reverse+find to select+last https://github.com/rubygems/rubygems/commit/ffb161bb69 --- lib/bundler/lazy_specification.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/bundler/lazy_specification.rb b/lib/bundler/lazy_specification.rb index 4a7f528119..7245692546 100644 --- a/lib/bundler/lazy_specification.rb +++ b/lib/bundler/lazy_specification.rb @@ -96,12 +96,12 @@ module Bundler else source.specs.search(self) end - installable_candidates = candidates.select do |spec| + best_installable_candidate = 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 = installable_candidates.last || candidates.last + search = best_installable_candidate || candidates.last search.dependencies = dependencies if search && (search.is_a?(RemoteSpecification) || search.is_a?(EndpointSpecification)) search end