This file is indexed.

/usr/lib/ruby/1.8/rb-inotify.rb is in librb-inotify-ruby1.8 0.7.0-4.

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
require 'rb-inotify/native'
require 'rb-inotify/native/flags'
require 'rb-inotify/notifier'
require 'rb-inotify/watcher'
require 'rb-inotify/event'

# The root module of the library, which is laid out as so:
#
# * {Notifier} -- The main class, where the notifications are set up
# * {Watcher} -- A watcher for a single file or directory
# * {Event} -- An filesystem event notification
module INotify
  # An array containing the version number of rb-inotify.
  # The numbers in the array are the major, minor, and patch versions,
  # respectively.
  VERSION = [0, 7, 0]
end