Parse expressions in Liquid::Variable#parse.

This commit is contained in:
Dylan Thacker-Smith
2014-10-08 21:06:59 -04:00
parent 632b1fb702
commit f387508666
3 changed files with 107 additions and 74 deletions
+10
View File
@@ -64,5 +64,15 @@ module Liquid
object
end
def ==(other)
self.class == other.class && self.state == other.state
end
protected
def state
[@name, @lookup, @command_flags]
end
end
end