mirror of
https://github.com/ruby/ruby.git
synced 2025-08-24 05:25:34 +02:00

* lib/rubygems/core_ext/kernel_warn.rb (Kernel#warn): skip kernel_require.rb's frames when `uplevel` option is given. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64817 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
21 lines
564 B
Ruby
Executable file
21 lines
564 B
Ruby
Executable file
# frozen_string_literal: true
|
|
|
|
if RUBY_VERSION >= "2.5"
|
|
module Kernel
|
|
path = "#{__dir__}/"
|
|
original_warn = instance_method(:warn)
|
|
Module.new {define_method(:warn, original_warn)}
|
|
original_warn = method(:warn)
|
|
|
|
module_function define_method(:warn) {|message, uplevel: nil|
|
|
if uplevel
|
|
while (loc, = caller_locations(uplevel, 1); loc && loc.path.start_with?(path))
|
|
uplevel += 1
|
|
end
|
|
original_warn.call(message, uplevel: uplevel + 1)
|
|
else
|
|
original_warn.call(message)
|
|
end
|
|
}
|
|
end
|
|
end
|