summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Rodríguez <deivid.rodriguez@riseup.net>2022-07-29 21:17:59 +0200
committergit <svn-admin@ruby-lang.org>2022-08-02 16:10:16 +0900
commit5487e76374c5ee247b0f5a2867a6dc1319d98e0e (patch)
tree7f433d64b7e574cefa99b404c546a2733f539b7c
parentbc0de1e16250ecb4e8278ec64de86fbc049c5e63 (diff)
[rubygems/rubygems] Prefer reverse+find to select+last
https://github.com/rubygems/rubygems/commit/ffb161bb69
-rw-r--r--lib/bundler/lazy_specification.rb4
1 files 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