wordify_liquid 2.5.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (69) hide show
  1. data/History.md +75 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.md +44 -0
  4. data/lib/extras/liquid_view.rb +51 -0
  5. data/lib/liquid.rb +68 -0
  6. data/lib/liquid/block.rb +115 -0
  7. data/lib/liquid/condition.rb +120 -0
  8. data/lib/liquid/context.rb +259 -0
  9. data/lib/liquid/document.rb +17 -0
  10. data/lib/liquid/drop.rb +61 -0
  11. data/lib/liquid/errors.rb +11 -0
  12. data/lib/liquid/extensions.rb +62 -0
  13. data/lib/liquid/file_system.rb +62 -0
  14. data/lib/liquid/htmltags.rb +74 -0
  15. data/lib/liquid/interrupts.rb +17 -0
  16. data/lib/liquid/module_ex.rb +62 -0
  17. data/lib/liquid/standardfilters.rb +245 -0
  18. data/lib/liquid/strainer.rb +53 -0
  19. data/lib/liquid/tag.rb +26 -0
  20. data/lib/liquid/tags/assign.rb +33 -0
  21. data/lib/liquid/tags/break.rb +21 -0
  22. data/lib/liquid/tags/capture.rb +35 -0
  23. data/lib/liquid/tags/case.rb +79 -0
  24. data/lib/liquid/tags/comment.rb +9 -0
  25. data/lib/liquid/tags/continue.rb +21 -0
  26. data/lib/liquid/tags/cycle.rb +59 -0
  27. data/lib/liquid/tags/decrement.rb +39 -0
  28. data/lib/liquid/tags/for.rb +142 -0
  29. data/lib/liquid/tags/if.rb +79 -0
  30. data/lib/liquid/tags/ifchanged.rb +20 -0
  31. data/lib/liquid/tags/include.rb +65 -0
  32. data/lib/liquid/tags/increment.rb +35 -0
  33. data/lib/liquid/tags/raw.rb +21 -0
  34. data/lib/liquid/tags/unless.rb +33 -0
  35. data/lib/liquid/template.rb +150 -0
  36. data/lib/liquid/utils.rb +31 -0
  37. data/lib/liquid/variable.rb +57 -0
  38. data/lib/wordify_liquid.rb +1 -0
  39. data/test/liquid/assign_test.rb +21 -0
  40. data/test/liquid/block_test.rb +58 -0
  41. data/test/liquid/capture_test.rb +40 -0
  42. data/test/liquid/condition_test.rb +127 -0
  43. data/test/liquid/context_test.rb +478 -0
  44. data/test/liquid/drop_test.rb +169 -0
  45. data/test/liquid/error_handling_test.rb +81 -0
  46. data/test/liquid/file_system_test.rb +29 -0
  47. data/test/liquid/filter_test.rb +125 -0
  48. data/test/liquid/module_ex_test.rb +87 -0
  49. data/test/liquid/output_test.rb +116 -0
  50. data/test/liquid/parsing_quirks_test.rb +52 -0
  51. data/test/liquid/regexp_test.rb +44 -0
  52. data/test/liquid/security_test.rb +64 -0
  53. data/test/liquid/standard_filter_test.rb +195 -0
  54. data/test/liquid/strainer_test.rb +52 -0
  55. data/test/liquid/tags/break_tag_test.rb +16 -0
  56. data/test/liquid/tags/continue_tag_test.rb +16 -0
  57. data/test/liquid/tags/for_tag_test.rb +284 -0
  58. data/test/liquid/tags/html_tag_test.rb +63 -0
  59. data/test/liquid/tags/if_else_tag_test.rb +160 -0
  60. data/test/liquid/tags/include_tag_test.rb +139 -0
  61. data/test/liquid/tags/increment_tag_test.rb +24 -0
  62. data/test/liquid/tags/raw_tag_test.rb +15 -0
  63. data/test/liquid/tags/standard_tag_test.rb +295 -0
  64. data/test/liquid/tags/statements_test.rb +134 -0
  65. data/test/liquid/tags/unless_else_tag_test.rb +26 -0
  66. data/test/liquid/template_test.rb +74 -0
  67. data/test/liquid/variable_test.rb +180 -0
  68. data/test/test_helper.rb +29 -0
  69. metadata +145 -0
data/History.md ADDED
@@ -0,0 +1,75 @@
1
+ # Liquid Version History
2
+
3
+ ## 2.5.0 / 2013-03-06
4
+
5
+ * Prevent Object methods from being called on drops
6
+ * Avoid symbol injection from liquid
7
+ * Added break and continue statements
8
+ * Fix filter parser for args without space separators
9
+ * Add support for filter keyword arguments
10
+
11
+ ## 2.4.0 / 2012-08-03
12
+
13
+ * Performance improvements
14
+ * Allow filters in `assign`
15
+ * Add `modulo` filter
16
+ * Ruby 1.8, 1.9, and Rubinius compatibility fixes
17
+ * Add support for `quoted['references']` in `tablerow`
18
+ * Add support for Enumerable to `tablerow`
19
+ * `strip_html` filter removes html comments
20
+
21
+
22
+ ## 2.3.0 / 2011-10-16
23
+
24
+ * Several speed/memory improvements
25
+ * Numerous bug fixes
26
+ * Added support for MRI 1.9, Rubinius, and JRuby
27
+ * Added support for integer drop parameters
28
+ * Added epoch support to `date` filter
29
+ * New `raw` tag that suppresses parsing
30
+ * Added `else` option to `for` tag
31
+ * New `increment` tag
32
+ * New `split` filter
33
+
34
+
35
+ ## 2.2.1 / 2010-08-23
36
+
37
+ * Added support for literal tags
38
+
39
+
40
+ ## 2.2.0 / 2010-08-22
41
+
42
+ * Compatible with Ruby 1.8.7, 1.9.1 and 1.9.2-p0
43
+ * Merged some changed made by the community
44
+
45
+
46
+ ## 1.9.0 / 2008-03-04
47
+
48
+ * Fixed gem install rake task
49
+ * Improve Error encapsulation in liquid by maintaining a own set of exceptions instead of relying on ruby build ins
50
+
51
+
52
+ ## Before 1.9.0
53
+
54
+ * Added If with or / and expressions
55
+ * Implemented .to_liquid for all objects which can be passed to liquid like Strings Arrays Hashes Numerics and Booleans. To export new objects to liquid just implement .to_liquid on them and return objects which themselves have .to_liquid methods.
56
+ * Added more tags to standard library
57
+ * Added include tag ( like partials in rails )
58
+ * [...] Gazillion of detail improvements
59
+ * Added strainers as filter hosts for better security [Tobias Luetke]
60
+ * Fixed that rails integration would call filter with the wrong "self" [Michael Geary]
61
+ * Fixed bad error reporting when a filter called a method which doesn't exist. Liquid told you that it couldn't find the filter which was obviously misleading [Tobias Luetke]
62
+ * Removed count helper from standard lib. use size [Tobias Luetke]
63
+ * Fixed bug with string filter parameters failing to tolerate commas in strings. [Paul Hammond]
64
+ * Improved filter parameters. Filter parameters are now context sensitive; Types are resolved according to the rules of the context. Multiple parameters are now separated by the Liquid::ArgumentSeparator: , by default [Paul Hammond]
65
+ {{ 'Typo' | link_to: 'http://typo.leetsoft.com', 'Typo - a modern weblog engine' }}
66
+ * Added Liquid::Drop. A base class which you can use for exporting proxy objects to liquid which can acquire more data when used in liquid. [Tobias Luetke]
67
+
68
+ class ProductDrop < Liquid::Drop
69
+ def top_sales
70
+ Shop.current.products.find(:all, :order => 'sales', :limit => 10 )
71
+ end
72
+ end
73
+ t = Liquid::Template.parse( ' {% for product in product.top_sales %} {{ product.name }} {% endfor %} ' )
74
+ t.render('product' => ProductDrop.new )
75
+ * Added filter parameters support. Example: {{ date | format_date: "%Y" }} [Paul Hammond]
data/MIT-LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2005, 2006 Tobias Luetke
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,44 @@
1
+ # Liquid template engine
2
+
3
+ ## Introduction
4
+
5
+ Liquid is a template engine which was written with very specific requirements:
6
+
7
+ * It has to have beautiful and simple markup. Template engines which don't produce good looking markup are no fun to use.
8
+ * It needs to be non evaling and secure. Liquid templates are made so that users can edit them. You don't want to run code on your server which your users wrote.
9
+ * It has to be stateless. Compile and render steps have to be separate so that the expensive parsing and compiling can be done once and later on you can just render it passing in a hash with local variables and objects.
10
+
11
+ ## Why you should use Liquid
12
+
13
+ * You want to allow your users to edit the appearance of your application but don't want them to run **insecure code on your server**.
14
+ * You want to render templates directly from the database.
15
+ * You like smarty (PHP) style template engines.
16
+ * You need a template engine which does HTML just as well as emails.
17
+ * You don't like the markup of your current templating engine.
18
+
19
+ ## What does it look like?
20
+
21
+ ```html
22
+ <ul id="products">
23
+ {% for product in products %}
24
+ <li>
25
+ <h2>{{ product.name }}</h2>
26
+ Only {{ product.price | price }}
27
+
28
+ {{ product.description | prettyprint | paragraph }}
29
+ </li>
30
+ {% endfor %}
31
+ </ul>
32
+ ```
33
+
34
+ ## How to use Liquid
35
+
36
+ Liquid supports a very simple API based around the Liquid::Template class.
37
+ For standard use you can just pass it the content of a file and call render with a parameters hash.
38
+
39
+ ```ruby
40
+ @template = Liquid::Template.parse("hi {{name}}") # Parses and compiles the template
41
+ @template.render('name' => 'tobi') # => "hi tobi"
42
+ ```
43
+
44
+ [![Build Status](https://secure.travis-ci.org/Shopify/liquid.png)](http://travis-ci.org/Shopify/liquid)
@@ -0,0 +1,51 @@
1
+ # LiquidView is a action view extension class. You can register it with rails
2
+ # and use liquid as an template system for .liquid files
3
+ #
4
+ # Example
5
+ #
6
+ # ActionView::Base::register_template_handler :liquid, LiquidView
7
+ class LiquidView
8
+ PROTECTED_ASSIGNS = %w( template_root response _session template_class action_name request_origin session template
9
+ _response url _request _cookies variables_added _flash params _headers request cookies
10
+ ignore_missing_templates flash _params logger before_filter_chain_aborted headers )
11
+ PROTECTED_INSTANCE_VARIABLES = %w( @_request @controller @_first_render @_memoized__pick_template @view_paths
12
+ @helpers @assigns_added @template @_render_stack @template_format @assigns )
13
+
14
+ def self.call(template)
15
+ "LiquidView.new(self).render(template, local_assigns)"
16
+ end
17
+
18
+ def initialize(view)
19
+ @view = view
20
+ end
21
+
22
+ def render(template, local_assigns = nil)
23
+ @view.controller.headers["Content-Type"] ||= 'text/html; charset=utf-8'
24
+
25
+ # Rails 2.2 Template has source, but not locals
26
+ if template.respond_to?(:source) && !template.respond_to?(:locals)
27
+ assigns = (@view.instance_variables - PROTECTED_INSTANCE_VARIABLES).inject({}) do |hash, ivar|
28
+ hash[ivar[1..-1]] = @view.instance_variable_get(ivar)
29
+ hash
30
+ end
31
+ else
32
+ assigns = @view.assigns.reject{ |k,v| PROTECTED_ASSIGNS.include?(k) }
33
+ end
34
+
35
+ source = template.respond_to?(:source) ? template.source : template
36
+ local_assigns = (template.respond_to?(:locals) ? template.locals : local_assigns) || {}
37
+
38
+ if content_for_layout = @view.instance_variable_get("@content_for_layout")
39
+ assigns['content_for_layout'] = content_for_layout
40
+ end
41
+ assigns.merge!(local_assigns.stringify_keys)
42
+
43
+ liquid = Liquid::Template.parse(source)
44
+ liquid.render(assigns, :filters => [@view.controller.master_helper_module], :registers => {:action_view => @view, :controller => @view.controller})
45
+ end
46
+
47
+ def compilable?
48
+ false
49
+ end
50
+
51
+ end
data/lib/liquid.rb ADDED
@@ -0,0 +1,68 @@
1
+ # Copyright (c) 2005 Tobias Luetke
2
+ #
3
+ # Permission is hereby granted, free of charge, to any person obtaining
4
+ # a copy of this software and associated documentation files (the
5
+ # "Software"), to deal in the Software without restriction, including
6
+ # without limitation the rights to use, copy, modify, merge, publish,
7
+ # distribute, sublicense, and/or sell copies of the Software, and to
8
+ # permit persons to whom the Software is furnished to do so, subject to
9
+ # the following conditions:
10
+ #
11
+ # The above copyright notice and this permission notice shall be
12
+ # included in all copies or substantial portions of the Software.
13
+ #
14
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
21
+
22
+ module Liquid
23
+ FilterSeparator = /\|/
24
+ ArgumentSeparator = ','
25
+ FilterArgumentSeparator = ':'
26
+ VariableAttributeSeparator = '.'
27
+ TagStart = /\{\%/
28
+ TagEnd = /\%\}/
29
+ VariableSignature = /\(?[\w\-\.\[\]]\)?/
30
+ VariableSegment = /[\w\-]/
31
+ VariableStart = /\{\{/
32
+ VariableEnd = /\}\}/
33
+ VariableIncompleteEnd = /\}\}?/
34
+ QuotedString = /"[^"]*"|'[^']*'/
35
+ QuotedFragment = /#{QuotedString}|(?:[^\s,\|'"]|#{QuotedString})+/o
36
+ StrictQuotedFragment = /"[^"]+"|'[^']+'|[^\s|:,]+/
37
+ FirstFilterArgument = /#{FilterArgumentSeparator}(?:#{StrictQuotedFragment})/o
38
+ OtherFilterArgument = /#{ArgumentSeparator}(?:#{StrictQuotedFragment})/o
39
+ SpacelessFilter = /^(?:'[^']+'|"[^"]+"|[^'"])*#{FilterSeparator}(?:#{StrictQuotedFragment})(?:#{FirstFilterArgument}(?:#{OtherFilterArgument})*)?/o
40
+ Expression = /(?:#{QuotedFragment}(?:#{SpacelessFilter})*)/o
41
+ TagAttributes = /(\w+)\s*\:\s*(#{QuotedFragment})/o
42
+ AnyStartingTag = /\{\{|\{\%/
43
+ PartialTemplateParser = /#{TagStart}.*?#{TagEnd}|#{VariableStart}.*?#{VariableIncompleteEnd}/o
44
+ TemplateParser = /(#{PartialTemplateParser}|#{AnyStartingTag})/o
45
+ VariableParser = /\[[^\]]+\]|#{VariableSegment}+\??/o
46
+ end
47
+
48
+ require 'liquid/drop'
49
+ require 'liquid/extensions'
50
+ require 'liquid/errors'
51
+ require 'liquid/interrupts'
52
+ require 'liquid/strainer'
53
+ require 'liquid/context'
54
+ require 'liquid/tag'
55
+ require 'liquid/block'
56
+ require 'liquid/document'
57
+ require 'liquid/variable'
58
+ require 'liquid/file_system'
59
+ require 'liquid/template'
60
+ require 'liquid/htmltags'
61
+ require 'liquid/standardfilters'
62
+ require 'liquid/condition'
63
+ require 'liquid/module_ex'
64
+ require 'liquid/utils'
65
+
66
+ # Load all the tags of the standard library
67
+ #
68
+ Dir[File.dirname(__FILE__) + '/liquid/tags/*.rb'].each { |f| require f }
@@ -0,0 +1,115 @@
1
+ module Liquid
2
+
3
+ class Block < Tag
4
+ IsTag = /^#{TagStart}/o
5
+ IsVariable = /^#{VariableStart}/o
6
+ FullToken = /^#{TagStart}\s*(\w+)\s*(.*)?#{TagEnd}$/o
7
+ ContentOfVariable = /^#{VariableStart}(.*)#{VariableEnd}$/o
8
+
9
+ def parse(tokens)
10
+ @nodelist ||= []
11
+ @nodelist.clear
12
+
13
+ while token = tokens.shift
14
+
15
+ case token
16
+ when IsTag
17
+ if token =~ FullToken
18
+
19
+ # if we found the proper block delimitor just end parsing here and let the outer block
20
+ # proceed
21
+ if block_delimiter == $1
22
+ end_tag
23
+ return
24
+ end
25
+
26
+ # fetch the tag from registered blocks
27
+ if tag = Template.tags[$1]
28
+ @nodelist << tag.new($1, $2, tokens)
29
+ else
30
+ # this tag is not registered with the system
31
+ # pass it to the current block for special handling or error reporting
32
+ unknown_tag($1, $2, tokens)
33
+ end
34
+ else
35
+ raise SyntaxError, "Tag '#{token}' was not properly terminated with regexp: #{TagEnd.inspect} "
36
+ end
37
+ when IsVariable
38
+ @nodelist << create_variable(token)
39
+ when ''
40
+ # pass
41
+ else
42
+ @nodelist << token
43
+ end
44
+ end
45
+
46
+ # Make sure that its ok to end parsing in the current block.
47
+ # Effectively this method will throw and exception unless the current block is
48
+ # of type Document
49
+ assert_missing_delimitation!
50
+ end
51
+
52
+ def end_tag
53
+ end
54
+
55
+ def unknown_tag(tag, params, tokens)
56
+ case tag
57
+ when 'else'
58
+ raise SyntaxError, "#{block_name} tag does not expect else tag"
59
+ when 'end'
60
+ raise SyntaxError, "'end' is not a valid delimiter for #{block_name} tags. use #{block_delimiter}"
61
+ else
62
+ raise SyntaxError, "Unknown tag '#{tag}'"
63
+ end
64
+ end
65
+
66
+ def block_delimiter
67
+ "end#{block_name}"
68
+ end
69
+
70
+ def block_name
71
+ @tag_name
72
+ end
73
+
74
+ def create_variable(token)
75
+ token.scan(ContentOfVariable) do |content|
76
+ return Variable.new(content.first)
77
+ end
78
+ raise SyntaxError.new("Variable '#{token}' was not properly terminated with regexp: #{VariableEnd.inspect} ")
79
+ end
80
+
81
+ def render(context)
82
+ render_all(@nodelist, context)
83
+ end
84
+
85
+ protected
86
+
87
+ def assert_missing_delimitation!
88
+ raise SyntaxError.new("#{block_name} tag was never closed")
89
+ end
90
+
91
+ def render_all(list, context)
92
+ output = []
93
+ list.each do |token|
94
+ # Break out if we have any unhanded interrupts.
95
+ break if context.has_interrupt?
96
+
97
+ begin
98
+ # If we get an Interrupt that means the block must stop processing. An
99
+ # Interrupt is any command that stops block execution such as {% break %}
100
+ # or {% continue %}
101
+ if token.is_a? Continue or token.is_a? Break
102
+ context.push_interrupt(token.interrupt)
103
+ break
104
+ end
105
+
106
+ output << (token.respond_to?(:render) ? token.render(context) : token)
107
+ rescue ::StandardError => e
108
+ output << (context.handle_error(e))
109
+ end
110
+ end
111
+
112
+ output.join
113
+ end
114
+ end
115
+ end
@@ -0,0 +1,120 @@
1
+ module Liquid
2
+ # Container for liquid nodes which conveniently wraps decision making logic
3
+ #
4
+ # Example:
5
+ #
6
+ # c = Condition.new('1', '==', '1')
7
+ # c.evaluate #=> true
8
+ #
9
+ class Condition #:nodoc:
10
+ @@operators = {
11
+ '==' => lambda { |cond, left, right| cond.send(:equal_variables, left, right) },
12
+ '!=' => lambda { |cond, left, right| !cond.send(:equal_variables, left, right) },
13
+ '<>' => lambda { |cond, left, right| !cond.send(:equal_variables, left, right) },
14
+ '<' => :<,
15
+ '>' => :>,
16
+ '>=' => :>=,
17
+ '<=' => :<=,
18
+ 'contains' => lambda { |cond, left, right| left && right ? left.include?(right) : false }
19
+ }
20
+
21
+ def self.operators
22
+ @@operators
23
+ end
24
+
25
+ attr_reader :attachment
26
+ attr_accessor :left, :operator, :right
27
+
28
+ def initialize(left = nil, operator = nil, right = nil)
29
+ @left, @operator, @right = left, operator, right
30
+ @child_relation = nil
31
+ @child_condition = nil
32
+ end
33
+
34
+ def evaluate(context = Context.new)
35
+ result = interpret_condition(left, right, operator, context)
36
+
37
+ case @child_relation
38
+ when :or
39
+ result || @child_condition.evaluate(context)
40
+ when :and
41
+ result && @child_condition.evaluate(context)
42
+ else
43
+ result
44
+ end
45
+ end
46
+
47
+ def or(condition)
48
+ @child_relation, @child_condition = :or, condition
49
+ end
50
+
51
+ def and(condition)
52
+ @child_relation, @child_condition = :and, condition
53
+ end
54
+
55
+ def attach(attachment)
56
+ @attachment = attachment
57
+ end
58
+
59
+ def else?
60
+ false
61
+ end
62
+
63
+ def inspect
64
+ "#<Condition #{[@left, @operator, @right].compact.join(' ')}>"
65
+ end
66
+
67
+ private
68
+
69
+ def equal_variables(left, right)
70
+ if left.is_a?(Symbol)
71
+ if right.respond_to?(left)
72
+ return right.send(left.to_s)
73
+ else
74
+ return nil
75
+ end
76
+ end
77
+
78
+ if right.is_a?(Symbol)
79
+ if left.respond_to?(right)
80
+ return left.send(right.to_s)
81
+ else
82
+ return nil
83
+ end
84
+ end
85
+
86
+ left == right
87
+ end
88
+
89
+ def interpret_condition(left, right, op, context)
90
+ # If the operator is empty this means that the decision statement is just
91
+ # a single variable. We can just poll this variable from the context and
92
+ # return this as the result.
93
+ return context[left] if op == nil
94
+
95
+ left, right = context[left], context[right]
96
+
97
+ operation = self.class.operators[op] || raise(ArgumentError.new("Unknown operator #{op}"))
98
+
99
+ if operation.respond_to?(:call)
100
+ operation.call(self, left, right)
101
+ elsif left.respond_to?(operation) and right.respond_to?(operation)
102
+ left.send(operation, right)
103
+ else
104
+ nil
105
+ end
106
+ end
107
+ end
108
+
109
+
110
+ class ElseCondition < Condition
111
+ def else?
112
+ true
113
+ end
114
+
115
+ def evaluate(context)
116
+ true
117
+ end
118
+ end
119
+
120
+ end