Sha256: 72d60d78530011ffdd4545ec29b86f46335f17bcd873799a0d06073620224a1d
Contents?: true
Size: 1.07 KB
Versions: 28
Compression:
Stored size: 1.07 KB
Contents
module RailsAdmin module Config module Proxyable class Proxy instance_methods.each {|m| undef_method m unless m =~ /^(__|instance_eval|object_id)/ } 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.kind_of?(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
Version data entries
28 entries across 28 versions & 5 rubygems