ruby-changes:70616
From: Masataka <ko1@a...>
Date: Mon, 27 Dec 2021 10:46:05 +0900 (JST)
Subject: [ruby-changes:70616] 73707e5c51 (master): [rubygems/rubygems] Make SpecificationPolicy autoload constant
https://git.ruby-lang.org/ruby.git/commit/?id=73707e5c51 From 73707e5c51f9244f62dcaec044e50d7c604fc654 Mon Sep 17 00:00:00 2001 From: Masataka Pocke Kuwabara <kuwabara@p...> Date: Sun, 26 Dec 2021 12:28:57 +0900 Subject: [rubygems/rubygems] Make SpecificationPolicy autoload constant It reduces memory usage about 204kb (1.4%). https://github.com/rubygems/rubygems/commit/b7d4b8c8a6 --- lib/rubygems.rb | 1 + lib/rubygems/specification.rb | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/rubygems.rb b/lib/rubygems.rb index e24580c5b88..eb5674c6f46 100644 --- a/lib/rubygems.rb +++ b/lib/rubygems.rb @@ -1316,6 +1316,7 @@ An Array (#{env.inspect}) was passed in from #{caller[3]} https://github.com/ruby/ruby/blob/trunk/lib/rubygems.rb#L1316 autoload :Source, File.expand_path('rubygems/source', __dir__) autoload :SourceList, File.expand_path('rubygems/source_list', __dir__) autoload :SpecFetcher, File.expand_path('rubygems/spec_fetcher', __dir__) + autoload :SpecificationPolicy, File.expand_path('rubygems/specification_policy', __dir__) autoload :Util, File.expand_path('rubygems/util', __dir__) autoload :Version, File.expand_path('rubygems/version', __dir__) end diff --git a/lib/rubygems/specification.rb b/lib/rubygems/specification.rb index 031a37f7750..a0705b9d6c6 100644 --- a/lib/rubygems/specification.rb +++ b/lib/rubygems/specification.rb @@ -11,7 +11,6 @@ require_relative 'basic_specification' https://github.com/ruby/ruby/blob/trunk/lib/rubygems/specification.rb#L11 require_relative 'stub_specification' require_relative 'platform' require_relative 'requirement' -require_relative 'specification_policy' require_relative 'util/list' ## -- cgit v1.2.1 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/