Let say I would like to set nested style for development and compressed for production. There is only one option in Compass configuration file:
output_style = :compact # or :nested, :expanded, :compressed
|
Let say I would like to set nested style for development and compressed for production. There is only one option in Compass configuration file:
| ||||
|
feedback
|
|
It appears that it's pretty easy:
To check it I've run this rake task in different environments (I had to change sass source before running this task):
You can place this task in lib/tasks/sass.rake. Else I have this task running in my Capistrano deploy.rb to automatically update stylesheets on production during deployment:
| |||
|
feedback
|
|
In addition to the answer by Voldy I solved the problem by creating an initializer called sass_config and putting this in it:
| |||
|
feedback
|