Liquid Version History

2.5.3 / branch “2.5-stable”

2.5.2 / 2013-09-03 / deleted

Yanked from rubygems, as it contained too many changes that broke compatibility. Those changes will be on following major releases.

2.5.1 / 2013-07-24

2.5.0 / 2013-03-06

2.4.0 / 2012-08-03

2.3.0 / 2011-10-16

2.2.1 / 2010-08-23

2.2.0 / 2010-08-22

1.9.0 / 2008-03-04

Before 1.9.0

class ProductDrop < Liquid::Drop def top_sales Shop.current.products.find(:all, :order => 'sales', :limit => 10 ) end end t = Liquid::Template.parse( ' {% for product in product.top_sales %} {{ product.name }} {% endfor %} ' ) t.render('product' => ProductDrop.new ) * Added filter parameters support. Example: {{ date | format_date: “%Y” }} [Paul Hammond]