Class: Bosh::Template::EvaluationContext::ActiveElseBlock

Inherits:
Object
  • Object
show all
Defined in:
lib/bosh/template/evaluation_context.rb

Instance Method Summary collapse

Constructor Details

#initialize(template_context) ⇒ ActiveElseBlock

Returns a new instance of ActiveElseBlock.



197
198
199
# File 'lib/bosh/template/evaluation_context.rb', line 197

def initialize(template_context)
  @context = template_context
end

Instance Method Details

#elseObject



201
202
203
# File 'lib/bosh/template/evaluation_context.rb', line 201

def else
  yield
end


209
210
211
# File 'lib/bosh/template/evaluation_context.rb', line 209

def else_if_link(name, &block)
  @context.if_link(name, &block)
end

#else_if_p(*names, &block) ⇒ Object



205
206
207
# File 'lib/bosh/template/evaluation_context.rb', line 205

def else_if_p(*names, &block)
  @context.if_p(*names, &block)
end