[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.

This commit is contained in:
Chris Eppstein 2009-05-23 09:57:50 -07:00
parent fcdaf41dbc
commit 7b90aef5d4

View File

@ -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