public
Rubygem
Description: Liquid markup language. Save, customer facing template language for flexible web apps.
Homepage: http://www.liquidmarkup.org
Clone URL: git://github.com/tobi/liquid.git
Click here to lend your support to: liquid and make a donation at www.pledgie.com !
Tobias Lütke (author)
Thu May 08 09:35:17 -0700 2008
commit  8f45647aa37d784163980e9e23e4e515d5ecfd70
tree    ad8dfa06d85eca728176202db9e773f10593fd83
parent  4c0cfae0b725cd6945fcdd495b0c877b08b8a90b
liquid / init.rb
100644 9 lines (7 sloc) 0.242 kb
1
2
3
4
5
6
7
8
9
require 'liquid'
require 'extras/liquid_view'
 
if defined? ActionView::Template and ActionView::Template.respond_to? :register_template_handler
  ActionView::Template
else
  ActionView::Base
end.register_template_handler(:liquid, LiquidView)