2009-05-19 18:27:29 +00:00
|
|
|
module Compass
|
2009-01-25 19:28:11 +00:00
|
|
|
end
|
|
|
|
|
2010-11-21 17:58:12 +00:00
|
|
|
%w(dependencies util sass_extensions core_ext version errors).each do |lib|
|
2009-09-03 02:47:01 +00:00
|
|
|
require "compass/#{lib}"
|
2008-08-23 17:00:46 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
module Compass
|
|
|
|
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-09-12 21:58:07 +00:00
|
|
|
%w(configuration frameworks app_integration actions compiler sprites).each do |lib|
|
2009-09-03 02:47:01 +00:00
|
|
|
require "compass/#{lib}"
|
|
|
|
end
|