The Depot Application

The Depot Application

6.1 Iteration A1: Getting Something Running Table of Contents

4 Instant Gratification

erubis -r /home/rubys/git/awdwr/edition3/work-30/erbshim -T - < /home/rubys/git/awdwr/edition3/data/code/erb/ex1.html.erb | sed 's/<!--.*-->//'
<ul>
  <li>Addition: 3 </li>
  <li>Concatenation: cowboy </li>
  <li>Time in one hour:  Fri Jun 29 16:10:28 -0400 2012 </li>
</ul>
erubis -r /home/rubys/git/awdwr/edition3/work-30/erbshim -T - < /home/rubys/git/awdwr/edition3/data/code/erb/ex2.html.erb | sed 's/<!--.*-->//'
 
Ho!<br />
 
Ho!<br />
 
Ho!<br />
Merry Christmas!
erubis -r /home/rubys/git/awdwr/edition3/work-30/erbshim -T - < /home/rubys/git/awdwr/edition3/data/code/erb/ex2a.html.erb | sed 's/<!--.*-->//'
Ho!<br />
Ho!<br />
Ho!<br />
Merry Christmas!
sed 's/-%>\n/%>/' < /home/rubys/git/awdwr/edition3/data/code/erb/ex2b.html.erb |  
         erubis -r /home/rubys/git/awdwr/edition3/work-30/erbshim -T - | sed 's/<!--.*-->//'
Ho!<br />
Ho!<br />
Ho!<br />
Merry Christmas!

6.1 Iteration A1: Getting Something Running Table of Contents