This file is indexed.

/usr/lib/ruby/vendor_ruby/naught.rb is in ruby-naught 1.0.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
12
13
require 'naught/version'
require 'naught/null_class_builder'
require 'naught/null_class_builder/commands'

module Naught
  def self.build(&customization_block)
    builder = NullClassBuilder.new
    builder.customize(&customization_block)
    builder.generate_class
  end
  module NullObjectTag
  end
end