This file is indexed.

/usr/lib/ruby/vendor_ruby/rspec/matchers/built_in.rb is in ruby-rspec-expectations 3.4.0c3e0m1s1-1ubuntu1.

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
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
RSpec::Support.require_rspec_matchers "built_in/base_matcher"

module RSpec
  module Matchers
    # Container module for all built-in matchers. The matcher classes are here
    # (rather than directly under `RSpec::Matchers`) in order to prevent name
    # collisions, since `RSpec::Matchers` gets included into the user's namespace.
    #
    # Autoloading is used to delay when the matcher classes get loaded, allowing
    # rspec-matchers to boot faster, and avoiding loading matchers the user is
    # not using.
    module BuiltIn
      autoload :BeAKindOf,               'rspec/matchers/built_in/be_kind_of'
      autoload :BeAnInstanceOf,          'rspec/matchers/built_in/be_instance_of'
      autoload :BeBetween,               'rspec/matchers/built_in/be_between'
      autoload :Be,                      'rspec/matchers/built_in/be'
      autoload :BeComparedTo,            'rspec/matchers/built_in/be'
      autoload :BeFalsey,                'rspec/matchers/built_in/be'
      autoload :BeNil,                   'rspec/matchers/built_in/be'
      autoload :BePredicate,             'rspec/matchers/built_in/be'
      autoload :BeTruthy,                'rspec/matchers/built_in/be'
      autoload :BeWithin,                'rspec/matchers/built_in/be_within'
      autoload :Change,                  'rspec/matchers/built_in/change'
      autoload :Compound,                'rspec/matchers/built_in/compound'
      autoload :ContainExactly,          'rspec/matchers/built_in/contain_exactly'
      autoload :Cover,                   'rspec/matchers/built_in/cover'
      autoload :EndWith,                 'rspec/matchers/built_in/start_or_end_with'
      autoload :Eq,                      'rspec/matchers/built_in/eq'
      autoload :Eql,                     'rspec/matchers/built_in/eql'
      autoload :Equal,                   'rspec/matchers/built_in/equal'
      autoload :Exist,                   'rspec/matchers/built_in/exist'
      autoload :Has,                     'rspec/matchers/built_in/has'
      autoload :HaveAttributes,          'rspec/matchers/built_in/have_attributes'
      autoload :Include,                 'rspec/matchers/built_in/include'
      autoload :All,                     'rspec/matchers/built_in/all'
      autoload :Match,                   'rspec/matchers/built_in/match'
      autoload :NegativeOperatorMatcher, 'rspec/matchers/built_in/operators'
      autoload :OperatorMatcher,         'rspec/matchers/built_in/operators'
      autoload :Output,                  'rspec/matchers/built_in/output'
      autoload :PositiveOperatorMatcher, 'rspec/matchers/built_in/operators'
      autoload :RaiseError,              'rspec/matchers/built_in/raise_error'
      autoload :RespondTo,               'rspec/matchers/built_in/respond_to'
      autoload :Satisfy,                 'rspec/matchers/built_in/satisfy'
      autoload :StartWith,               'rspec/matchers/built_in/start_or_end_with'
      autoload :ThrowSymbol,             'rspec/matchers/built_in/throw_symbol'
      autoload :YieldControl,            'rspec/matchers/built_in/yield'
      autoload :YieldSuccessiveArgs,     'rspec/matchers/built_in/yield'
      autoload :YieldWithArgs,           'rspec/matchers/built_in/yield'
      autoload :YieldWithNoArgs,         'rspec/matchers/built_in/yield'
    end
  end
end