Class: Chronic::Sign
Instance Attribute Summary
Attributes inherited from Tag
Class Method Summary collapse
-
.scan(tokens, options) ⇒ Object
Scan an Array of Token objects and apply any necessary Sign tags to each token.
Instance Method Summary collapse
Methods inherited from Tag
Constructor Details
This class inherits a constructor from Chronic::Tag
Class Method Details
.scan(tokens, options) ⇒ Object
Scan an Array of Token objects and apply any necessary Sign tags to each token.
tokens - An Array of tokens to scan. options - The Hash of options specified in Chronic::parse.
Returns an Array of tokens.
11 12 13 14 15 16 |
# File 'lib/chronic/tags/sign.rb', line 11 def self.scan(tokens, ) tokens.each do |token| token.tag scan_for(token, SignPlus, { :+ => :plus }) token.tag scan_for(token, SignMinus, { :- => :minus }) end end |
Instance Method Details
#to_s ⇒ Object
18 19 20 |
# File 'lib/chronic/tags/sign.rb', line 18 def to_s 'sign' end |