This file is indexed.

/usr/lib/ruby/vendor_ruby/net/sftp/version.rb is in ruby-net-sftp 1:2.0.5-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
11
12
13
14
15
16
17
18
require 'net/ssh/version'

module Net; module SFTP

  # Describes the current version of the Net::SFTP library.
  class Version < Net::SSH::Version
    MAJOR = 2
    MINOR = 0
    TINY  = 5

    # The current version, as a Version instance
    CURRENT = new(MAJOR, MINOR, TINY)

    # The current version, as a String instance
    STRING  = CURRENT.to_s
  end

end; end