= tmplpro * http://github.com/tom-lpsd/ruby-html-template-pro == DESCRIPTION: A Ruby port of HTML::Template::Pro (template engine originally written in Perl and XS). == FEATURES/PROBLEMS: * Fast. (Main part is written in C.) * Simple. (It avoids mixing up complex logic in View.) == SYNOPSIS: # foo.rb require 'html/template/pro' template = HTML::Template::Pro.new(:filename => 'foo.tmpl') template.param(:param1 => 100) puts template.output # foo.tmpl

# results $ ruby foo.rb

100

== REQUIREMENTS: * C99 C compiler. == INSTALL: * sudo gem install html-template-pro == LICENSE: LGPL