This file is indexed.

/usr/lib/ruby/vendor_ruby/serverspec/matcher/contain.rb is in ruby-serverspec 2.18.0-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
18
19
20
21
22
23
24
25
26
27
28
RSpec::Matchers.define :contain do |pattern|
  match do |resource|
    if resource.is_a?(String)
      resource.match(Regexp.new([@from, pattern, @to].compact.join.gsub('/', '.*'), Regexp::MULTILINE))
    else
      resource.contain(pattern, @from, @to)
    end
  end

  # for contain(pattern).from(/A/).to(/B/)
  chain :from do |from|
    @from = Regexp.new(from).inspect
  end

  chain :to do |to|
    @to = Regexp.new(to).inspect
  end

  # for contain(pattern).after(/A/)
  chain :after do |after|
    @from = Regexp.new(after).inspect
  end

  # for contain(pattern).before(/B/)
  chain :before do |before|
    @to = Regexp.new(before).inspect
  end
end