Method: Erector::UnicodeBuilder#output_line
- Defined in:
- lib/erector/unicode_builder.rb
#output_line(line) ⇒ Object
32 33 34 35 36 37 38 39 40 |
# File 'lib/erector/unicode_builder.rb', line 32 def output_line(line) if (!@first) @output.puts(',') end @output.print(line) @first = false end |