instiki/vendor/rails/activeresource/test/setter_trap.rb
Jacques Distler 5292899c9a Rails 2.1 RC1
Updated Instiki to Rails 2.1 RC1 (aka 2.0.991).
2008-05-17 23:22:34 -05:00

28 lines
536 B
Ruby

class SetterTrap < ActiveSupport::BasicObject
class << self
def rollback_sets(obj)
returning yield(setter_trap = new(obj)) do
setter_trap.rollback_sets
end
end
end
def initialize(obj)
@cache = {}
@obj = obj
end
def respond_to?(method)
@obj.respond_to?(method)
end
def method_missing(method, *args, &proc)
@cache[method] ||= @obj.send($`) if method.to_s =~ /=$/
@obj.send method, *args, &proc
end
def rollback_sets
@cache.each { |k, v| @obj.send k, v }
end
end