Class: Liquid::Decrement

Inherits:
Tag
  • Object
show all
Defined in:
lib/liquid/tags/decrement.rb

Overview

Hello: decrement variable %

gives you:

Hello: -1
Hello: -2
Hello: -3

Instance Attribute Summary

Attributes inherited from Tag

#line_number, #nodelist, #parse_context, #tag_name

Instance Method Summary collapse

Methods inherited from Tag

#blank?, #name, #parse, parse, #raw

Methods included from ParserSwitching

#parse_with_selected_parser

Constructor Details

#initialize(tag_name, markup, options) ⇒ Decrement

Returns a new instance of Decrement.



21
22
23
24
# File 'lib/liquid/tags/decrement.rb', line 21

def initialize(tag_name, markup, options)
  super
  @variable = markup.strip
end

Instance Method Details

#render(context) ⇒ Object



26
27
28
29
30
31
# File 'lib/liquid/tags/decrement.rb', line 26

def render(context)
  value = context.environments.first[@variable] ||= 0
  value -= 1
  context.environments.first[@variable] = value
  value.to_s
end