Class: Trestle::Scopes::Block

Inherits:
Object
  • Object
show all
Defined in:
lib/trestle/scopes/block.rb

Defined Under Namespace

Classes: Evaluator

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(&block) ⇒ Block

Returns a new instance of Block.



6
7
8
# File 'lib/trestle/scopes/block.rb', line 6

def initialize(&block)
  @block = block
end

Instance Attribute Details

#blockObject (readonly)

Returns the value of attribute block.



4
5
6
# File 'lib/trestle/scopes/block.rb', line 4

def block
  @block
end

Instance Method Details

#scopes(context) ⇒ Object

Evaluates the scope block within the given admin context and returns an array of the scopes that were defined.



12
13
14
15
16
# File 'lib/trestle/scopes/block.rb', line 12

def scopes(context)
  context = Evaluator.new(context)
  context.instance_exec(context, &block)
  context.scopes
end