Using Rails 3 Asset Pipeline, I am importing mixins using
@import "mixins.css.scss";
in to a main SCSS file. Then utilize via
@include big_box(34px);
The problem is that when I make changes to the mixin in the separate file, the changes to take effect until I go into the main SCSS file, do any change (even a white space) and save.
There must be a way to disable mixin caching in the development environment to avoid this annoying step. I haven't been able to find the answer on my own.
NOTE: I'm using RubyMine for IDE