This file is indexed.

/usr/lib/ruby/vendor_ruby/slim/erb_converter.rb is in ruby-slim 2.0.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
require 'slim'

module Slim
  # Slim to ERB converter
  #
  # @example Conversion
  #   Slim::ERBConverter.new(options).call(slim_code) # outputs erb_code
  #
  # @api public
  class ERBConverter < Engine
    replace :Optimizer, Temple::Filters::CodeMerger
    replace :Generator, Temple::Generators::ERB
  end
end