Skip to content

Commit

Permalink
fix config
Browse files Browse the repository at this point in the history
  • Loading branch information
muffinresearch committed Nov 14, 2012
1 parent 8fa483b commit 5347bf5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 12 deletions.
8 changes: 3 additions & 5 deletions config/compass/debug.rb
Expand Up @@ -2,9 +2,7 @@
require config_file

Compass.configuration do |config|
# Default settings that need to be overriden
output_style = :debug
css_path = File.join($root_path, "css/debug/")
line_comments = true
config.output_style = :debug
config.css_path = File.join($root_path, "css/debug/")
config.line_comments = true
end

8 changes: 3 additions & 5 deletions config/compass/expanded.rb
@@ -1,10 +1,8 @@
# Require the defaults
config_file = File.expand_path('../base.rb', __FILE__)
require config_file


Compass.configuration do |config|
css_path = File.join($root_path, "css/expanded/")
output_style = :expanded
line_comments = false
config.output_style = :expanded
config.css_path = File.join($root_path, "css/expanded/")
config.line_comments = false
end
2 changes: 0 additions & 2 deletions config/compass/min.rb
@@ -1,8 +1,6 @@
# Require the defaults
config_file = File.expand_path('../base.rb', __FILE__)
require config_file


Compass.configuration do |config|
config.css_path = File.join($root_path, "css/min/")
config.output_style = :compressed
Expand Down

0 comments on commit 5347bf5

Please sign in to comment.