Class: Chronic::Grabber
Instance Attribute Summary
Attributes inherited from Tag
Class Method Summary collapse
-
.scan(tokens, options) ⇒ Array
Scan an Array of Tokens and apply any necessary Grabber tags to each token.
- .scan_for_all(token) ⇒ Grabber?
Instance Method Summary collapse
Methods inherited from Tag
Constructor Details
This class inherits a constructor from Chronic::Tag
Class Method Details
.scan(tokens, options) ⇒ Array
Scan an Array of Tokens and apply any necessary Grabber tags to each token
10 11 12 13 14 |
# File 'lib/chronic/grabber.rb', line 10 def self.scan(tokens, ) tokens.each do |token| if t = scan_for_all(token) then token.tag(t); next end end end |
.scan_for_all(token) ⇒ Grabber?
18 19 20 21 22 23 24 25 |
# File 'lib/chronic/grabber.rb', line 18 def self.scan_for_all(token) scan_for token, self, { /last/ => :last, /this/ => :this, /next/ => :next } end |
Instance Method Details
#to_s ⇒ Object
27 28 29 |
# File 'lib/chronic/grabber.rb', line 27 def to_s 'grabber-' << @type.to_s end |