/usr/lib/ruby/1.8/chronic/pointer.rb is in libchronic-ruby 0.2.3-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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
|