Method: Arrow::Template::AttributeDirective#render
- Defined in:
- lib/arrow/template/nodes.rb
#render(template, scope) ⇒ Object
Render the directive node’s contents as a String and return it.
425 426 427 428 429 430 431 |
# File 'lib/arrow/template/nodes.rb', line 425 def render( template, scope ) # self.log.debug "Rendering %p" % self rary = super rary.push( *(self.render_contents( template, scope )) ) return rary end |