This file is indexed.

/usr/lib/ruby/vendor_ruby/amqp/deprecated/mq.rb is in ruby-amqp 0.9.5-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
14
15
16
17
18
19
20
21
22
# encoding: utf-8

# Alias for AMQP::Channel.
#
# @note This class will be removed before 1.0 release.
# @deprecated
class MQ < AMQP::Channel; end


class MQ
  # Alias for AMQP::Exchange.
  #
  # @note This class will be removed before 1.0 release.
  # @deprecated
  class Exchange < ::AMQP::Exchange; end

  # Alias for AMQP::Queue.
  #
  # @note This class will be removed before 1.0 release.
  # @deprecated
  class Queue < ::AMQP::Queue; end
end