This file is indexed.

/usr/lib/ruby/vendor_ruby/innate/cache/marshal.rb is in ruby-innate 2013.02.21-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
require 'pstore'

module Innate
  class Cache
    # Keeps every cache in a separate file like this:
    # /tmp/innate-cache-marshal/delta-manveru-session.marshal
    #
    # The Marshal cache is not safe for use between multiple processes, it is
    # also slow compared to other caches, so generally the use of it is
    # discouraged.
    class Marshal
      include Cache::API
      include Cache::FileBased

      STORE = ::PStore
      DIR = 'innate-cache-marshal'
      EXT = '.marshal'
    end
  end
end