Class: Musterb::BindingExtractor
- Inherits:
-
Object
- Object
- Musterb::BindingExtractor
- Defined in:
- lib/musterb/binding_extractor.rb
Instance Attribute Summary collapse
-
#parent ⇒ Object
readonly
Returns the value of attribute parent.
-
#value ⇒ Object
readonly
Returns the value of attribute value.
Instance Method Summary collapse
- #[](symbol) ⇒ Object
-
#initialize(_binding, parent) ⇒ BindingExtractor
constructor
A new instance of BindingExtractor.
Constructor Details
#initialize(_binding, parent) ⇒ BindingExtractor
Returns a new instance of BindingExtractor.
4 5 6 7 |
# File 'lib/musterb/binding_extractor.rb', line 4 def initialize(_binding, parent) @binding = _binding @parent = parent end |
Instance Attribute Details
#parent ⇒ Object (readonly)
Returns the value of attribute parent.
2 3 4 |
# File 'lib/musterb/binding_extractor.rb', line 2 def parent @parent end |
#value ⇒ Object (readonly)
Returns the value of attribute value.
2 3 4 |
# File 'lib/musterb/binding_extractor.rb', line 2 def value @value end |
Instance Method Details
#[](symbol) ⇒ Object
9 10 11 12 13 |
# File 'lib/musterb/binding_extractor.rb', line 9 def [](symbol) @binding.eval symbol rescue NameError parent[symbol] end |