This file is indexed.

/usr/lib/ruby/vendor_ruby/yajl/bzip2.rb is in ruby-yajl 1.2.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
puts "DEPRECATION WARNING: Yajl's Bzip2 support is going to be removed in 2.0"

require 'yajl' unless defined?(Yajl::Parser)

begin
  require 'bzip2' unless defined?(Bzip2)
  require 'yajl/bzip2/stream_reader.rb'
  require 'yajl/bzip2/stream_writer.rb'
rescue LoadError => e
  raise "Unable to load the bzip2 library. Is the bzip2-ruby gem installed?"
end