diff options
author | David RodrÃguez <[email protected]> | 2025-04-12 20:00:54 +0200 |
---|---|---|
committer | Hiroshi SHIBATA <[email protected]> | 2025-04-15 16:47:19 +0900 |
commit | 0ad7cf17a00d7f183f4fb41a9c4b595ea8bb99cd (patch) | |
tree | 5f38e221a705df6ba2062e80e8d07fe2dcc37d0d /lib/bundler | |
parent | 806fbb1e477c4e70f3239a117a31ccef13f7aa2d (diff) |
[rubygems/rubygems] Clarify comment
https://github.com/rubygems/rubygems/commit/42534e746b
Diffstat (limited to 'lib/bundler')
-rw-r--r-- | lib/bundler/lazy_specification.rb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/bundler/lazy_specification.rb b/lib/bundler/lazy_specification.rb index 94a5b21e3d..808a4cc722 100644 --- a/lib/bundler/lazy_specification.rb +++ b/lib/bundler/lazy_specification.rb @@ -217,10 +217,10 @@ module Bundler if search if search.platform == platform - # We don't validate locally installed dependencies but accept what's in - # the lockfile instead for performance, since loading locally installed - # dependencies would mean evaluating all gemspecs, which would affect - # `bundler/setup` performance + # We don't validate dependencies of locally installed gems but accept + # what's in the lockfile instead for performance, since loading + # dependencies of locally installed gems would mean evaluating all + # gemspecs, which would affect `bundler/setup` performance if search.is_a?(StubSpecification) search.dependencies = dependencies else |