我正在从 Ruby 2.7 升级到 3.0,但遇到了关键字参数更改的问题。
以前我们出于某些目的在代码中使用了 define_method。但是,随着关键字参数的更改,它不再能够正确处理参数数组。
class Foo
def test(a: 1, b: 2)
puts a
puts b
end
old_method = instance_method(:test)
define_method(:test) do |*args, &block|
old_method.bind(self).call(*args, &block)
end
end
Foo.new.test(a: 1)
这将提高 wrong number of arguments (given 1, expected 0) (ArgumentError)
. 它以前在 Ruby 2.7 中工作。我们可以做些什么来让 *args 再次工作吗?