特定のオブジェクトのシングルトン メソッドを undef できるようにしたいと考えています。
class A
end
a = A.new
def a.foo
puts "bar"
end
# undef a.foo here
a.foo # should crash
特定のオブジェクトのシングルトン メソッドを undef できるようにしたいと考えています。
class A
end
a = A.new
def a.foo
puts "bar"
end
# undef a.foo here
a.foo # should crash