This file is indexed.

/usr/lib/ruby/vendor_ruby/active_model/version.rb is in ruby-activemodel-3.2 3.2.6-3.

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
module ActiveModel
  module VERSION #:nodoc:
    MAJOR = 3
    MINOR = 2
    TINY  = 6
    PRE   = nil

    STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
  end
end