Parent

Object

                                                                    

Same as above, except in Object.

Public Class Methods

blank_slate_method_added(name) click to toggle source
Alias for: method_added
find_hidden_method(name) click to toggle source
    # File lib/blankslate.rb, line 90
90:     def find_hidden_method(name)
91:       nil
92:     end
method_added(name) click to toggle source

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

    # File lib/blankslate.rb, line 83
83:     def method_added(name)
84:       result = blank_slate_method_added(name)
85:       return result if self != Object
86:       BlankSlate.hide(name)
87:       result
88:     end
Also aliased as: blank_slate_method_added

Disabled; run with --debug to generate this.

[Validate]

Generated with the Darkfish Rdoc Generator 1.1.6.