Skip to content

Instantly share code, notes, and snippets.

@bradediger
Created February 26, 2009 04:51
Show Gist options
  • Save bradediger/70664 to your computer and use it in GitHub Desktop.
Save bradediger/70664 to your computer and use it in GitHub Desktop.
def to_html
rows = data.map{|row| " <tr>#{row.map{|d| "<td>#{d}</td>"}.join}</tr>"}
"<table>\n#{rows.join("\n")}\n</table>"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment