2009-05-19 18:27:29 +00:00
|
|
|
module Compass
|
2009-01-25 19:28:11 +00:00
|
|
|
end
|
|
|
|
|
2009-09-03 02:47:01 +00:00
|
|
|
%w(dependencies sass_extensions core_ext version errors).each do |lib|
|
|
|
|
require "compass/#{lib}"
|
2008-08-23 17:00:46 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
module Compass
|
|
|
|
extend Compass::Version
|
2009-09-03 03:40:44 +00:00
|
|
|
VERSION = "#{version[:major]}.#{version[:minor]}.#{version[:patch]}"
|
2008-08-23 17:00:46 +00:00
|
|
|
def base_directory
|
|
|
|
File.expand_path(File.join(File.dirname(__FILE__), '..'))
|
|
|
|
end
|
2009-02-01 22:17:07 +00:00
|
|
|
def lib_directory
|
|
|
|
File.expand_path(File.join(File.dirname(__FILE__)))
|
|
|
|
end
|
|
|
|
module_function :base_directory, :lib_directory
|
2008-08-23 17:00:46 +00:00
|
|
|
end
|
|
|
|
|
2010-02-14 00:56:53 +00:00
|
|
|
%w(configuration frameworks app_integration actions compiler).each do |lib|
|
2009-09-03 02:47:01 +00:00
|
|
|
require "compass/#{lib}"
|
|
|
|
end
|