Methods
Public Class methods
method_added(name)

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

    # File lib/builder/blankslate.rb, line 57
57:     def method_added(name)
58:       blank_slate_method_added(name)
59:       return if self != Object
60:       Builder::BlankSlate.hide(name)
61:     end