0
+* Fixed gem install rake task
0
+* Improve Error encapsulation in liquid by maintaining a own set of exceptions instead of relying on ruby build ins
0
-
Added If with or / and expressions
0
+
* Added If with or / and expressions
0
-Implemented .to_liquid for all objects which can be passed to liquid like Strings Arrays Hashes Numerics and Booleans.
0
-To export new objects to liquid just implement .to_liquid on them and return objects which themselves have .to_liquid methods.
0
+* Implemented .to_liquid for all objects which can be passed to liquid like Strings Arrays Hashes Numerics and Booleans. To export new objects to liquid just implement .to_liquid on them and return objects which themselves have .to_liquid methods.
0
-
Added more tags to standard library
0
+
* Added more tags to standard library
0
-
Added include tag ( like partials in rails )
0
+
* Added include tag ( like partials in rails )
0
-
[...] Gazillion of detail improvements
0
+
* [...] Gazillion of detail improvements
0
-
Added strainers as filter hosts for better security [Tobias Luetke]
0
+
* Added strainers as filter hosts for better security [Tobias Luetke]
0
-
Fixed that rails integration would call filter with the wrong "self" [Michael Geary]
0
+
* Fixed that rails integration would call filter with the wrong "self" [Michael Geary]
0
-Fixed bad error reporting when a filter called a method which doesn't exist. Liquid told you that it couldn't find the
0
-filter which was obviously misleading [Tobias Luetke]
0
+* Fixed bad error reporting when a filter called a method which doesn't exist. Liquid told you that it couldn't find the filter which was obviously misleading [Tobias Luetke]
0
-
Removed count helper from standard lib. use size [Tobias Luetke]
0
+
* Removed count helper from standard lib. use size [Tobias Luetke]
0
-
Fixed bug with string filter parameters failing to tolerate commas in strings. [Paul Hammond]
0
+
* Fixed bug with string filter parameters failing to tolerate commas in strings. [Paul Hammond]
0
-Improved filter parameters. Filter parameters are now context sensitive; Types are resolved according to the rules of the context. Multiple parameters are now separated by the Liquid::ArgumentSeparator: , by default [Paul Hammond]
0
+* Improved filter parameters. Filter parameters are now context sensitive; Types are resolved according to the rules of the context. Multiple parameters are now separated by the Liquid::ArgumentSeparator: , by default [Paul Hammond]
0
{{ 'Typo' | link_to: 'http://typo.leetsoft.com', 'Typo - a modern weblog engine' }}
0
-
Added Liquid::Drop. A base class which you can use for exporting proxy objects to liquid which can acquire more data when used in liquid. [Tobias Luetke]
0
+
* Added Liquid::Drop. A base class which you can use for exporting proxy objects to liquid which can acquire more data when used in liquid. [Tobias Luetke]
0
class ProductDrop < Liquid::Drop
0
@@ -37,4 +37,4 @@ Added Liquid::Drop. A base class which you can use for exporting proxy objects t
0
t.render('product' => ProductDrop.new )
0
-Added filter parameters support. Example: {{ date | format_date: "%Y" }} [Paul Hammond]
0
+* Added filter parameters support. Example: {{ date | format_date: "%Y" }} [Paul Hammond]
Comments
No one has commented yet.