Hide the method named name in the BlankSlate class. Don’t hide instance_eval or any method beginning with "__".
Source Code
# File hpricot/blankslate.rb, line 22 def hide(name) undef_method name if instance_methods.include?(name.to_s) and name !~ /^(__|instance_eval)/ end
<code/>and<pre/>for code samples.