ruby-changes:61141
From: V=C3=ADt <ko1@a...>
Date: Fri, 8 May 2020 14:15:03 +0900 (JST)
Subject: [ruby-changes:61141] acc86570dd (master): [rubygems/rubygems] Let `@@stubs_by_name` to be incrementally populated again.
https://git.ruby-lang.org/ruby.git/commit/?id=acc86570dd From acc86570dd8cc1920d1c55da7836d6c60d98a6d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADt=20Ondruch?= <vondruch@r...> Date: Tue, 2 Apr 2019 10:52:44 +0200 Subject: [rubygems/rubygems] Let `@@stubs_by_name` to be incrementally populated again. Originally, the call to `.stubs_for` allowed to incrementally populate the `@@stubs_by_name` (especially see the `"#{name}-*.gemspec"` pattern in 4fa03bb7aac9f25f44394e818433fdda9962ae8d). Now it looks like it expects that all stubs are loaded, but the `.stubs_for` still matches the .gemspec files by the `name` pattern: https://github.com/rubygems/rubygems/blob/6d45e0f7ac1caca22900e39f703e226c4cfdebf7/lib/rubygems/specification.rb#L845 I think this was done by mistake incrementally by PR #1239 and 4cee8ca9199ac7b3ab8647e0b78615f55d3eb02b. I think the best option is to get back to the original implementation, to let RubyGems incrementally populate the array. Other option would be to replace the logic in `.stub_for` by call to `.stubs`, but the means the performance improvement from the original commit was lost. https://github.com/rubygems/rubygems/commit/4d0e18185a diff --git a/lib/rubygems/specification.rb b/lib/rubygems/specification.rb index 9f6cdea..4f2b64e 100644 --- a/lib/rubygems/specification.rb +++ b/lib/rubygems/specification.rb @@ -828,8 +828,8 @@ class Gem::Specification < Gem::BasicSpecification https://github.com/ruby/ruby/blob/trunk/lib/rubygems/specification.rb#L828 # only returns stubs that match Gem.platforms def self.stubs_for(name) - if @@stubs - @@stubs_by_name[name] || [] + if @@stubs_by_name[name] + @@stubs_by_name[name] else pattern = "#{name}-*.gemspec" stubs = Gem.loaded_specs.values + diff --git a/test/rubygems/test_gem_specification.rb b/test/rubygems/test_gem_specification.rb index e056850..f6caba8 100644 --- a/test/rubygems/test_gem_specification.rb +++ b/test/rubygems/test_gem_specification.rb @@ -1179,6 +1179,25 @@ dependencies: [] https://github.com/ruby/ruby/blob/trunk/test/rubygems/test_gem_specification.rb#L1179 Gem::Specification.class_variable_set(:@@stubs, nil) end + def test_self_stubs_for_lazy_loading + Gem.loaded_specs.clear + Gem::Specification.class_variable_set(:@@stubs, nil) + + dir_standard_specs = File.join Gem.dir, 'specifications' + + save_gemspec('a-1', '1', dir_standard_specs){|s| s.name = 'a' } + save_gemspec('b-1', '1', dir_standard_specs){|s| s.name = 'b' } + + assert_equal ['a-1'], Gem::Specification.stubs_for('a').map { |s| s.full_name } + assert_equal 1, Gem::Specification.class_variable_get(:@@stubs_by_name).length + assert_equal ['b-1'], Gem::Specification.stubs_for('b').map { |s| s.full_name } + assert_equal 2, Gem::Specification.class_variable_get(:@@stubs_by_name).length + + Gem.loaded_specs.delete 'a' + Gem.loaded_specs.delete 'b' + Gem::Specification.class_variable_set(:@@stubs, nil) + end + def test_self_stubs_for_mult_platforms # gems for two different platforms are installed with --user-install # the correct one should be returned in the array -- cgit v0.10.2 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/