class Object

Same as above, except in Object.

Public Class Methods

blank_slate_method_added(name)
Alias for: method_added
find_hidden_method(name) click to toggle source
    # File lib/blankslate.rb
114 def find_hidden_method(name)
115   nil
116 end
method_added(name) click to toggle source

Detect method additions to Object and remove them in the BlankSlate class.

    # File lib/blankslate.rb
107 def method_added(name)
108   result = blank_slate_method_added(name)
109   return result if self != Object
110   BlankSlate.hide(name)
111   result
112 end
Also aliased as: blank_slate_method_added