Rename Block#parse to parse_body since that is how it is being used.

This commit is contained in:
Dylan Thacker-Smith
2014-02-27 23:16:11 -05:00
parent dc78e565ab
commit 99f950c167
2 changed files with 3 additions and 3 deletions

View File

@@ -7,14 +7,14 @@ module Liquid
def initialize(tag_name, markup, tokens)
super
parse(tokens)
parse_body(tokens)
end
def blank?
@blank || false
end
def parse(tokens)
def parse_body(tokens)
@blank = true
@nodelist ||= []
@nodelist.clear

View File

@@ -2,7 +2,7 @@ module Liquid
class Raw < Block
FullTokenPossiblyInvalid = /\A(.*)#{TagStart}\s*(\w+)\s*(.*)?#{TagEnd}\z/om
def parse(tokens)
def parse_body(tokens)
@nodelist ||= []
@nodelist.clear
while token = tokens.shift