This file is indexed.

/usr/lib/ruby/1.8/compass.rb is in libcompass-ruby1.8 0.10.6~dfsg-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
14
15
16
17
18
19
20
module Compass
end

%w(dependencies sass_extensions core_ext version errors).each do |lib|
  require "compass/#{lib}"
end

module Compass
  def base_directory
    File.expand_path(File.join(File.dirname(__FILE__), '..'))
  end
  def lib_directory
    File.expand_path(File.join(File.dirname(__FILE__)))
  end
  module_function :base_directory, :lib_directory
end

%w(configuration frameworks app_integration actions compiler).each do |lib|
  require "compass/#{lib}"
end