From: Alex Fenton Date: 2005-11-19T06:47:20+09:00 Subject: Re: generic, non web based templating engine? Michael Campbell wrote: > Is there a generic templating engine for ruby, a la Freemarker for > Java? What I'm looking for is something that can take a ruby "model" > (object graph, hashes, lists, etc.), a template, merge the 2 and spit > out the result. Perhaps PageTemplate: http://rubyforge.org/projects/pagetemplate/ mature; stricter separation of code and template in that it doesn't involve embedding any ruby code in templates and doesn't even allow any parameter passing to loop functions. good if that's the sort of templating you want. alex