Method: Formatter::HTML#build_row
- Defined in:
- app/formatters/html_formatter.rb
#build_row(data = self.data) ⇒ Object
Renders individual rows for the table.
30 31 32 33 34 35 |
# File 'app/formatters/html_formatter.rb', line 30 def build_row(data = self.data) output << "\t\t<tr>\n\t\t\t<td>" + safe_join(data.to_a, "</td>\n\t\t\t<td>") + "</td>\n\t\t</tr>\n" end |