I have a Rails 3.1 application that uses SASS. The application.css.scss file looks like:
application.css.scss
@import \'reset.css\'; @import \'960.css\'; @import \'p
I had a similar issue with Rails 6.0.3.1 today. I had to re-touch application.scss so that rails didn't use the cached version.
application.scss
Running rake tmp:cache:clear helped, but it's annoying because I had to run the command every time I updated any partial scss file. :(
rake tmp:cache:clear