Sha256: 92cbe3420be68fcc269bb3696fcf15741c04c4ea2f949ea48647a4751ce56919
Contents?: true
Size: 357 Bytes
Versions: 54
Compression:
Stored size: 357 Bytes
Contents
module Liquid class Document < Block # we don't need markup to open this block def initialize(tokens) parse(tokens) end # There isn't a real delimter def block_delimiter [] end # Document blocks don't need to be terminated since they are not actually opened def assert_missing_delimitation! end end end
Version data entries
54 entries across 54 versions & 10 rubygems