Class: Musterb::RailsLocalsExtractor

Inherits:
Object
  • Object
show all
Defined in:
lib/musterb/rails_locals_extractor.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(locals, binding, parent) ⇒ RailsLocalsExtractor

Returns a new instance of RailsLocalsExtractor.



4
5
6
7
8
# File 'lib/musterb/rails_locals_extractor.rb', line 4

def initialize(locals, binding, parent)
  @locals = locals
  @parent = parent
  @binding = binding
end

Instance Attribute Details

#parentObject (readonly)

Returns the value of attribute parent.



2
3
4
# File 'lib/musterb/rails_locals_extractor.rb', line 2

def parent
  @parent
end

#valueObject (readonly)

Returns the value of attribute value.



2
3
4
# File 'lib/musterb/rails_locals_extractor.rb', line 2

def value
  @value
end

Instance Method Details

#[](symbol) ⇒ Object



10
11
12
13
14
15
16
# File 'lib/musterb/rails_locals_extractor.rb', line 10

def [](symbol)
  if @locals.include? symbol
    @binding.eval symbol
  else
    parent[symbol]
  end
end