Avoid warning when requiring bigdecimal/util when bigdecimal is in gemfile

This commit is contained in:
Samuel Giddins 2023-12-16 14:52:20 +08:00 коммит произвёл Hiroshi SHIBATA
Родитель 6f6b36b7e4
Коммит 83bdf127b8
1 изменённых файлов: 7 добавлений и 3 удалений

Просмотреть файл

@ -59,10 +59,12 @@ module Gem::BUNDLED_GEMS
def self.replace_require(specs)
return if [::Kernel.singleton_class, ::Kernel].any? {|klass| klass.respond_to?(:no_warning_require) }
spec_names = specs.to_a.each_with_object({}) {|spec, h| h[spec.name] = true }
[::Kernel.singleton_class, ::Kernel].each do |kernel_class|
kernel_class.send(:alias_method, :no_warning_require, :require)
kernel_class.send(:define_method, :require) do |name|
if message = ::Gem::BUNDLED_GEMS.warning?(name, specs: specs) # rubocop:disable Style/HashSyntax
if message = ::Gem::BUNDLED_GEMS.warning?(name, specs: spec_names) # rubocop:disable Style/HashSyntax
warn message, :uplevel => 1
end
kernel_class.send(:no_warning_require, name)
@ -90,10 +92,12 @@ module Gem::BUNDLED_GEMS
def self.warning?(name, specs: nil)
feature = File.path(name) # name can be a feature name or a file path with String or Pathname
name = feature.tr("/", "-").sub(LIBEXT, "")
return if specs.to_a.map(&:name).include?(name)
name = feature.tr("/", "-")
name.sub!(LIBEXT, "")
return if specs.include?(name)
_t, path = $:.resolve_feature_path(feature)
if gem = find_gem(path)
return if specs.include?(gem)
caller = caller_locations(3, 3).find {|c| c&.absolute_path}
return if find_gem(caller&.absolute_path)
elsif SINCE[name]