From dd867d668a5d0ec7189a823d7f5625048763617b Mon Sep 17 00:00:00 2001 From: Chris Eppstein Date: Sat, 29 Aug 2009 11:57:13 -0700 Subject: [PATCH] Use the http_stylesheets_path instead of hard coding. --- lib/compass/installers/base.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/compass/installers/base.rb b/lib/compass/installers/base.rb index 67120b40..c3d32d24 100644 --- a/lib/compass/installers/base.rb +++ b/lib/compass/installers/base.rb @@ -22,7 +22,7 @@ module Compass @manifest_file ||= File.join(template_path, "manifest.rb") end - [:css_dir, :sass_dir, :images_dir, :javascripts_dir].each do |dir| + [:css_dir, :sass_dir, :images_dir, :javascripts_dir, :http_stylesheets_path].each do |dir| define_method dir do Compass.configuration.send(dir) end @@ -173,7 +173,7 @@ module Compass media = if stylesheet.options[:media] %Q{ media="#{stylesheet.options[:media]}"} end - ss_line = %Q{ } + ss_line = %Q{ } if stylesheet.options[:condition] ss_line = " " end