From 7b90aef5d44fccc84e566adbd41f778048a4018d Mon Sep 17 00:00:00 2001 From: Chris Eppstein Date: Sat, 23 May 2009 09:57:50 -0700 Subject: [PATCH] [Rails] Don't set the output style in the compass.config file for rails projects. It will default according to the runtime environment. Closes GH-4. --- lib/compass/installers/rails.rb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/compass/installers/rails.rb b/lib/compass/installers/rails.rb index ec613a59..975df956 100644 --- a/lib/compass/installers/rails.rb +++ b/lib/compass/installers/rails.rb @@ -80,6 +80,8 @@ Emit compiled stylesheets to #{recommended_location}/? (Y/n) } Compass.configuration.serialize do |prop, value| if prop == :project_path "project_path = RAILS_ROOT if defined?(RAILS_ROOT)\n" + elsif prop == :output_style + "" end end end