This file is indexed.

/usr/lib/ruby/vendor_ruby/yell/helpers/silencer.rb is in ruby-yell 2.0.7-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
29
30
# encoding: utf-8
module Yell #:nodoc:
  module Helpers #:nodoc:
    module Silencer

      # Set the silence pattern
      def silence( *patterns )
        silencer.add(*patterns)
      end

      def silencer
        @__silencer__
      end


      private

      def reset!
        @__silencer__ = Yell::Silencer.new

        super
      end

      def silence!( *messages )
        @__silencer__.silence!(*messages) if silencer.silence?
      end

    end
  end
end