Class: RailsAdmin::Config::Proxyable::Proxy
- Inherits:
- 
      Object
      
        - Object
- RailsAdmin::Config::Proxyable::Proxy
 
- Defined in:
- lib/rails_admin/config/proxyable/proxy.rb
Instance Attribute Summary collapse
- 
  
    
      #bindings  ⇒ Object 
    
    
  
  
  
  
    
      readonly
    
    
  
  
  
  
  
  
    Returns the value of attribute bindings. 
Instance Method Summary collapse
- 
  
    
      #bind(key, value = nil)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Bind variables to be used by the configuration options. 
- 
  
    
      #initialize(object, bindings = {})  ⇒ Proxy 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of Proxy. 
- #method_missing(name, *args, &block) ⇒ Object
Constructor Details
#initialize(object, bindings = {}) ⇒ Proxy
Returns a new instance of Proxy.
| 9 10 11 12 | # File 'lib/rails_admin/config/proxyable/proxy.rb', line 9 def initialize(object, bindings = {}) @object = object @bindings = bindings end | 
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing(name, *args, &block) ⇒ Object
| 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | # File 'lib/rails_admin/config/proxyable/proxy.rb', line 24 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 | 
Instance Attribute Details
#bindings ⇒ Object (readonly)
Returns the value of attribute bindings.
| 7 8 9 | # File 'lib/rails_admin/config/proxyable/proxy.rb', line 7 def bindings @bindings end | 
Instance Method Details
#bind(key, value = nil) ⇒ Object
Bind variables to be used by the configuration options
| 15 16 17 18 19 20 21 22 | # File 'lib/rails_admin/config/proxyable/proxy.rb', line 15 def bind(key, value = nil) if key.is_a?(Hash) @bindings = key else @bindings[key] = value end self end |