class Object
Same as above, except in Object
.
Public Class Methods
method_added(name)
click to toggle source
Detect method additions to Object
and remove them in the BlankSlate
class.
# File lib/blankslate.rb 108 def method_added(name) 109 result = blank_slate_method_added(name) 110 return result if self != Object 111 BlankSlate.hide(name) 112 result 113 end
Also aliased as: blank_slate_method_added