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 28 29 30 31 32 33 34 35 36 37 38 39
|
module RailsAdmin
module Config
module Proxyable
class Proxy < BasicObject
attr_reader :bindings
def initialize(object, bindings = {})
@object = object
@bindings = bindings
end
# Bind variables to be used by the configuration options
def bind(key, value = nil)
if key.is_a?(::Hash)
@bindings = key
else
@bindings[key] = value
end
self
end
def method_missing(name, *args, &block)
if @object.respond_to?(name)
reset = @object.instance_variable_get('@bindings')
begin
@object.instance_variable_set('@bindings', @bindings)
response = @object.__send__(name, *args, &block)
ensure
@object.instance_variable_set('@bindings', reset)
end
response
else
super(name, *args, &block)
end
end
end
end
end
end
|