This file is indexed.

/usr/lib/ruby/vendor_ruby/merb-core/gem_ext/gem_dependency.rb is in ruby-merb-core 1.1.3+dfsg-2.

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
begin
  require 'rubygems/dependency'

  module Gem
    class Dependency
      # :api: private
      attr_accessor :require_block, :require_as, :original_caller, :source
    end
  end
rescue LoadError
  Merb.warn! "Merb requires Rubygems 1.1 and later. " \
    "Please upgrade RubyGems with gem update --system."  
end