-
Notifications
You must be signed in to change notification settings - Fork 331
Closed
Labels
Description
Scenario:
-
Rails 3.2 project.
-
My stylesheet includes this line:
@import "core/pages/*"
-
Adding a new file
core/pages/x.sass
has no effect. -
Adding this line to my stylesheet causes
x
to be noticed:@import "core/pages/x"
-
x
will continue to be paid attention to after this, even if the line in the previous step is removed.
Neither rake tmp:clear
nor rake assets:clean
seem to have no effect on the above.
Neither does modifying the main stylesheet in a trivial way (like adding whitespace or touch
-ing).
Is there any way I can tell sass-rails, doing its asset-pipeline magic, to force update?
See also: Compass/compass#818 and Compass/compass-rails#46