From: James Edward Gray II Date: 2005-09-10T09:21:36+09:00 Subject: Re: Using Ruby as a preprocessor for another language On Sep 9, 2005, at 7:11 PM, debbie@theanimaro.com wrote: > I didn't want to use ERuby because I find that > those <% %> <%= %> tags everywhere make the script unreadable (ERuby > is more for HTML IMO). Are you aware that you can set ERuby (and ERb, the little brother library included standard with Ruby) to treat any line beginning with a simple % as code? Example: % npcs.each do |thug| The thug's name is: <%= thug.name %> % end Just wanted to point that out. It's covered in the documentation for the library, if you want to learn more. James Edward Gray II