This file is indexed.

/usr/lib/ruby/1.8/chronic/grabber.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
#module Chronic

  class Chronic::Grabber < Chronic::Tag #:nodoc:
    def self.scan(tokens)
      tokens.each_index do |i|
        if t = self.scan_for_all(tokens[i]) then tokens[i].tag(t); next end
      end
      tokens
    end
    
    def self.scan_for_all(token)
      scanner = {/last/ => :last,
                 /this/ => :this,
                 /next/ => :next}
      scanner.keys.each do |scanner_item|
        return self.new(scanner[scanner_item]) if scanner_item =~ token.word
      end
      return nil
    end
    
    def to_s
      'grabber-' << @type.to_s
    end
  end

#end