Sha256: f62f8abb0efa565701f782a147c77e73b919c7d1ab670de9cc396ef18e3a34ee
Contents?: true
Size: 675 Bytes
Versions: 214
Compression:
Stored size: 675 Bytes
Contents
$ ruby fasteruby.rb ---------- script source --- _buf = ''; _buf << %Q`<html> <body> <h1>#{Erubis::XmlHelper.escape_xml( @title )}</h1> <table>\n` i = 0 for item in @list i += 1 _buf << %Q` <tr> <td>#{ i }</td> <td>#{Erubis::XmlHelper.escape_xml( item )}</td> </tr>\n` end _buf << %Q` </table> </body> </html>\n` _buf.to_s ---------- result ---------- <html> <body> <h1>Example</h1> <table> <tr> <td>1</td> <td>aaa</td> </tr> <tr> <td>2</td> <td>bbb</td> </tr> <tr> <td>3</td> <td>ccc</td> </tr> </table> </body> </html>
Version data entries
214 entries across 188 versions & 44 rubygems