File: pointer.rb

package info (click to toggle)
libchronic-ruby 0.2.3-1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 268 kB
  • ctags: 329
  • sloc: ruby: 2,686; makefile: 7
file content (27 lines) | stat: -rw-r--r-- 603 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
module Chronic

  class Pointer < Tag #:nodoc:
    def self.scan(tokens)
      # for each token
      tokens.each_index do |i|
        if t = self.scan_for_all(tokens[i]) then tokens[i].tag(t) end
      end
      tokens
    end
  
    def self.scan_for_all(token)
      scanner = {/\bpast\b/ => :past,
                 /\bfuture\b/ => :future,
                 /\bin\b/ => :future}
      scanner.keys.each do |scanner_item|
        return self.new(scanner[scanner_item]) if scanner_item =~ token.word
      end
      return nil
    end
    
    def to_s
      'pointer-' << @type.to_s
    end
  end

end