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.



213
214
215
# File 'lib/bosh/template/evaluation_context.rb', line 213

def initialize(template_context)
  @context = template_context
end

Instance Method Details

#elseObject



217
218
219
# File 'lib/bosh/template/evaluation_context.rb', line 217

def else
  yield
end


225
226
227
# File 'lib/bosh/template/evaluation_context.rb', line 225

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

#else_if_p(*names, &block) ⇒ Object



221
222
223
# File 'lib/bosh/template/evaluation_context.rb', line 221

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