Sha256: c2e78af4be112532af7531a90db007b5c4e6eb393b4c023b9813af070a35de59
Contents?: true
Size: 934 Bytes
Versions: 14
Compression:
Stored size: 934 Bytes
Contents
module RailsAdmin module Config module Proxyable class Proxy < BasicObject 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(method_name, *args, &block) if @object.respond_to?(method_name) reset = @object.bindings begin @object.bindings = @bindings response = @object.__send__(method_name, *args, &block) ensure @object.bindings = reset end response else super(method_name, *args, &block) end end end end end end
Version data entries
14 entries across 14 versions & 1 rubygems