blob: 9a899b0fa06f7bd425ee5826689a6b1b255b0afe (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
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
|