This file is indexed.

/usr/lib/ruby/vendor_ruby/color-schemer.rb is in compass-color-schemer-plugin 0.2.8+20140309-2.

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
19
20
21
base_directory  = File.expand_path('/usr/share/compass/frameworks/color-schemer')
stylesheets_path = File.join(base_directory, 'stylesheets')
templates_path = File.join(base_directory, 'templates')

if (defined? Compass)
	require 'compass-blend-modes'
	Compass::Frameworks.register(
		'color-schemer',
		:stylesheets_directory => stylesheets_path,
		:templates_directory => templates_path
	)
else
	ENV["SASS_PATH"] = [ENV["SASS_PATH"], sass_path].compact.join(File::PATH_SEPARATOR)
end

module ColorSchemer
  
  VERSION = "0.2.8"
  DATE = "2011-09-15"

end