This file is indexed.

/usr/lib/ruby/1.8/qrack/qrack08.rb is in libbunny-ruby1.8 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/spec08'
require 'protocol/protocol08'

require 'transport/buffer08'
require 'transport/frame08'

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

module Qrack
	
	include Protocol
	include Transport
	
	# Errors
	class BufferOverflowError < StandardError; end
  class InvalidTypeError < StandardError; end

end