Same as above, except in Object.
Methods
Public Class methods
[ show source ]
# File lib/blankslate.rb, line 86
86: def find_hidden_method(name)
87: nil
88: end
Detect method additions to Object and remove them in the BlankSlate class.
[ show source ]
# File lib/blankslate.rb, line 79
79: def method_added(name)
80: result = blank_slate_method_added(name)
81: return result if self != Object
82: BlankSlate.hide(name)
83: result
84: end