This file is indexed.

/usr/lib/ruby/1.8/innate/cache/memory.rb is in libinnate-ruby1.8 2010.07-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
module Innate
  class Cache
    # Memory cache is simply a Hash with the Cache::API, it's the reference
    # implementation for every other cache and the default cache.
    class Memory < Hash
      include Cache::API

      def cache_store(*args)
        super{|key, value| self[key] = value }
      end

      def cache_fetch(*args)
        super{|key| self[key] }
      end

      def cache_delete(*args)
        super{|key| delete(key) }
      end
    end
  end
end