diff options
| author | David RodrÃguez <deivid.rodriguez@riseup.net> | 2022-07-04 14:47:53 +0200 |
|---|---|---|
| committer | Hiroshi SHIBATA <hsbt@ruby-lang.org> | 2022-10-18 16:33:15 +0900 |
| commit | 60670b163f32cae27629c852f95870656d2ee72f (patch) | |
| tree | dfd58518d69a1baeb1796619673d723869bb695d | |
| parent | 0b6f2af3ba7bda0a81bc1eb1bd5b067c8d9e3e17 (diff) | |
[rubygems/rubygems] Remove another unnecessary dependency expansion
https://github.com/rubygems/rubygems/commit/b4a0fcd2d2
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/6578
| -rw-r--r-- | lib/bundler/definition.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bundler/definition.rb b/lib/bundler/definition.rb index 485d8a1616..a289babcb3 100644 --- a/lib/bundler/definition.rb +++ b/lib/bundler/definition.rb @@ -484,7 +484,7 @@ module Bundler end def filter_specs(specs, deps) - SpecSet.new(specs).for(expand_dependencies(deps, true), false, platforms) + SpecSet.new(specs).for(deps, false, platforms) end def materialize(dependencies) |
