I want to compile two .css files each time I save my style.sass file
For example :
style.dev.css for development with these options :
sass_options = {:debug_info => true}
And style.css for production with these options :
sass_options = {:debug_info => false}
output_style = :compressed
line_comments = false
The goal is to have a firesass ready css file on my local machine and the compressed version on svn. For the time being I have to edit config.rb each time I want to commit my change on svn.
Is it possible ?