Class: Template::OutputBuffer
Instance Method Summary collapse
- #append(str) ⇒ Object (also: #append=)
-
#initialize ⇒ OutputBuffer
constructor
A new instance of OutputBuffer.
- #join ⇒ Object
Constructor Details
#initialize ⇒ OutputBuffer
Returns a new instance of OutputBuffer.
31 32 33 |
# File 'opal/stdlib/template.rb', line 31 def initialize @buffer = [] end |
Instance Method Details
#append(str) ⇒ Object Also known as: append=
[View source]
35 36 37 |
# File 'opal/stdlib/template.rb', line 35 def append(str) @buffer << str end |
#join ⇒ Object
[View source]
39 40 41 |
# File 'opal/stdlib/template.rb', line 39 def join @buffer.join end |