I trying to use Liquid template engine plugin , but I 'm getting the following error while controller tries to render a .liquid template .
"undefined method `call' for LiquidView:Class"
product_controller.rb
@product = Product.find(:first)
render :layout=> false, :template=> "product/show.liquid"
product/show.liquid
Product name : {{product.name}}
Price : {{product.price}}
I installed it as a plugin according to http://wiki.github.com/tobi/liquid/getting-liquid-to-work-in-rails
I using Rails 2.3.5 and Ruby 1.8.7.
Does anyone had the same problem before ?