This file is indexed.

/usr/lib/ruby/vendor_ruby/mini_magick/version.rb is in ruby-mini-magick 3.8.1-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
module MiniMagick
  ##
  # Returns the version of the currently loaded MiniMagick as
  # a <tt>Gem::Version</tt>.
  def self.version
    Gem::Version.new VERSION::STRING
  end

  module VERSION
    MAJOR = 3
    MINOR = 8
    TINY  = 1
    PRE   = nil

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