Class: LiquidBlocks::Block
- Inherits:
-
Liquid::Block
- Object
- Liquid::Block
- LiquidBlocks::Block
- Defined in:
- lib/liquid_blocks/block.rb
Constant Summary collapse
- Syntax =
/(\w)+/
Instance Attribute Summary collapse
-
#name ⇒ Object
readonly
Returns the value of attribute name.
-
#parent ⇒ Object
Returns the value of attribute parent.
Instance Method Summary collapse
- #add_parent(nodelist) ⇒ Object
- #call_super(context) ⇒ Object
-
#initialize(tag_name, markup, tokens) ⇒ Block
constructor
A new instance of Block.
- #render(context) ⇒ Object
Constructor Details
#initialize(tag_name, markup, tokens) ⇒ Block
Returns a new instance of Block.
19 20 21 22 23 24 25 26 27 |
# File 'lib/liquid_blocks/block.rb', line 19 def initialize(tag_name, markup, tokens) if markup =~ Syntax @name = $1 else raise Liquid::SyntaxError.new("Syntax Error in 'block' - Valid syntax: block [name]") end super if tokens end |
Instance Attribute Details
#name ⇒ Object (readonly)
Returns the value of attribute name.
17 18 19 |
# File 'lib/liquid_blocks/block.rb', line 17 def name @name end |
#parent ⇒ Object
Returns the value of attribute parent.
16 17 18 |
# File 'lib/liquid_blocks/block.rb', line 16 def parent @parent end |
Instance Method Details
#add_parent(nodelist) ⇒ Object
37 38 39 40 41 42 43 44 |
# File 'lib/liquid_blocks/block.rb', line 37 def add_parent(nodelist) if parent parent.add_parent(nodelist) else self.parent = Block.new(@tag_name, @name, nil) parent.nodelist = nodelist end end |
#call_super(context) ⇒ Object
46 47 48 49 50 51 52 |
# File 'lib/liquid_blocks/block.rb', line 46 def call_super(context) if parent parent.render(context) else '' end end |