# File lib/compass.rb, line 11defbase_directoryFile.expand_path(File.join(File.dirname(__FILE__), '..'))
end
const_missing(const)click to toggle source
# File lib/compass/version.rb, line 52defself.const_missing(const)
# This avoid reading from disk unless the VERSION is requested.ifconst==:VERSIONversion[:string]
elsesuperendend
lib_directory()click to toggle source
# File lib/compass.rb, line 14deflib_directoryFile.expand_path(File.join(File.dirname(__FILE__)))
end
shared_extension_paths()click to toggle source
# File lib/compass.rb, line 17defshared_extension_paths@shared_extension_paths||=beginifENV["HOME"] &&File.directory?(ENV["HOME"])
[File.join(ENV["HOME"], ".compass", "extensions")]
else
[]
endrescueArgumentError# If HOME is relative
[]
endend