This file is indexed.

/usr/lib/ruby/vendor_ruby/multi_json/adapters/json_pure.rb is in ruby-multi-json 1.11.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
require 'json/pure'
require 'multi_json/adapters/json_common'

module MultiJson
  module Adapters
    # Use JSON pure to dump/load.
    class JsonPure < JsonCommon
      ParseError = ::JSON::ParserError
    end
  end
end