Kernel

Since Ruby is very dynamic, methods added to the ancestors of BlankSlate after BlankSlate is defined will show up in the list of available BlankSlate methods. We handle this by defining a hook in the Object and Kernel classes that will hide any defined

Public Class Methods

hpricot_slate_method_added(name) click to toggle source
Alias for: method_added
method_added(name) click to toggle source

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

    # File lib/hpricot/blankslate.rb, line 43
43:     def method_added(name)
44:       hpricot_slate_method_added(name)
45:       return if self != Kernel
46:       Hpricot::BlankSlate.hide(name)
47:     end
Also aliased as: hpricot_slate_method_added

Disabled; run with --debug to generate this.

[Validate]

Generated with the Darkfish Rdoc Generator 1.1.6.