Actions
Bug #12206
closedundef_method on prepended module undefines same-name method on prepending class
Status:
Closed
Assignee:
-
Target version:
-
ruby -v:
ruby 2.3.0p0 (2015-12-25 revision 53290) [x86_64-darwin12.0]
Description
- Define a class with a method
- Define a module with a same-name method
- Prepend the module on the class
- Undefine the same-name method on the module, not touching the original method on the class
- Observe the class method to also become undefined
class MyClass
def foo
"MyClass#foo"
end
end
module MyMod
def foo
"#{super} prepended by MyMod#foo"
end
end
MyClass.prepend(MyMod)
MyClass.new.foo
# => "MyClass#foo prepended by MyMod#foo"
MyClass.instance_method(:foo) == MyMod.instance_method(:foo)
# => false
MyMod.send(:undef_method, :foo)
# The bug:
MyClass.new.foo
# => NoMethodError: undefined method `foo' for #<MyClass:0x007ffdf29614a8>
Expected behavior: MyClass#foo
would still return "MyClass#foo" since I only undefined foo
on the module, not on the class.
Real life use case: I'm setting up instrumentation code that can track and measure/benchmark call times of specific methods, but after it's done I want to clean up and restore original code the way it was. For me, it would be even better to support to "unprepend" a module from a class instead of undef_method on the mod, but that's more of a feature request than a bug).
Actions
Like0
Like0Like0Like0