Class Object
In: lib/hpricot/blankslate.rb
Parent: Object

Methods

Public Class methods

hpricot_slate_method_added(name)

Alias for method_added

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

[Source]

# File lib/hpricot/blankslate.rb, line 57
    def method_added(name)
      hpricot_slate_method_added(name)
      return if self != Object
      Hpricot::BlankSlate.hide(name)
    end

[Validate]