I want changes in my .scss files automatically reflect into css files.
I’m using Rails 3.
I places sass files to publish/stylesheets/sass folder
I’ve added:
require 'sass/plugin/rack'
use Sass::Plugin::Rack
to config.ru
However changes in scss styles still not reflect into css files.
It seem that I was wrong and all works correct even without running:
The problem was connected with fact, that empty styles declared in scss are not reflected to css.
For example:
When I have added some properties inside it everything stark working as expected.