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 14:22:07 -0700 2008
commit  ed75a6d948a12fae73430e3df59d226263f5bf6b
tree    7e8f38af9f9ed61a1fdb9270da33498d1a21960b
parent  63f9a05223070337021164eabc06059bfafd20d9
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)