This file is indexed.

/usr/lib/ruby/1.9.1/qrack/qrack09.rb is in libbunny-ruby1.9.1 0.6.2-3.

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
$: << File.expand_path(File.dirname(__FILE__))

require 'protocol/spec09'
require 'protocol/protocol09'

require 'transport/buffer09'
require 'transport/frame09'

require 'qrack/client'
require 'qrack/channel'
require 'qrack/queue'
require 'qrack/subscription'

module Qrack
	
	include Protocol09
	include Transport09
	
	# Errors
	class BufferOverflowError < StandardError; end
  class InvalidTypeError < StandardError; end

end