Sha256: c792983a3e663a3a4c62d5fb37a4d7a82875eec1958513d61f0b95649ddcb319
Contents?: true
Size: 1.6 KB
Versions: 3
Compression:
Stored size: 1.6 KB
Contents
if defined?(BlankSlate) # Rails 2.x has it already module ActsAsFerret class BlankSlate < ::BlankSlate end end else module ActsAsFerret # 'backported' for Rails pre 2.0 # #-- # Copyright 2004, 2006 by Jim Weirich (jim@weirichhouse.org). # All rights reserved. # Permission is granted for use, copying, modification, distribution, # and distribution of modified versions of this work as long as the # above copyright notice is included. #++ ###################################################################### # BlankSlate provides an abstract base class with no predefined # methods (except for <tt>\_\_send__</tt> and <tt>\_\_id__</tt>). # BlankSlate is useful as a base class when writing classes that # depend upon <tt>method_missing</tt> (e.g. dynamic proxies). # class BlankSlate class << self # Hide the method named +name+ in the BlankSlate class. Don't # hide +instance_eval+ or any method beginning with "__". def hide(name) if instance_methods.include?(name.to_s) and name !~ /^(__|instance_eval|methods)/ @hidden_methods ||= {} @hidden_methods[name.to_sym] = instance_method(name) undef_method name end end # Redefine a previously hidden method so that it may be called on a blank # slate object. # # no-op here since we don't hide the methods we reveal where this is # used in this implementation def reveal(name) end end instance_methods.each { |m| hide(m) } end end end
Version data entries
3 entries across 3 versions & 3 rubygems
Version | Path |
---|---|
cehoffman-acts_as_ferret-0.4.4 | lib/blank_slate.rb |
jkraemer-acts_as_ferret-0.4.4 | lib/blank_slate.rb |
acts_as_ferret-0.4.4 | lib/blank_slate.rb |