I have a Rails 3.1 application that uses SASS. The application.css.scss file looks like:
@import \'reset.css\';
@import \'960.css\';
@import \'p
You can invoke Rails automagic cache busting by doing the following:
_master.css.scss@import 'pages/master';Now you can make changes in master and have them reflected without messing with the cache manually.
(Note: I'm on Rails 4.2)