This file is indexed.

/usr/lib/ruby/vendor_ruby/eim_xml/xhtml/dsl.rb is in ruby-eim-xml 0.0.4-4.

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
require "eim_xml/dsl"
require "eim_xml/xhtml"

module EimXML::XHTML
	class DSL < EimXML::BaseDSL
	end

	class OpenDSL < EimXML::OpenDSL
	end

	constants.each do |c|
		v = const_get(c)
		if v.is_a?(Class) && /_$/ !~ v.name
			DSL.register v
			OpenDSL.register v
		end
	end
end