class Chronic::Grabber
def self.scan(tokens, options)
options - The Hash of options specified in Chronic::parse.
tokens - An Array of Token objects to scan.
each token.
Scan an Array of Tokens and apply any necessary Grabber tags to
def self.scan(tokens, options) tokens.each do |token| if t = scan_for_all(token) then token.tag(t); next end end end