By default, Sass caches compiled templates and partial ones. This greatly speeds up the reassembly of large collections of Sass files and works best if Sass templates are split into separate files, all @imported into one large file.
.sass-cache Sass places cached patterns in the .sass-cache directory. In Rails and Merb, they come in tmp/sass-cache . The directory can be configured using the parameter :cache_location .
If you do not want Sass to use caching at all, set the :cache parameter to false .
You can configure the location of the Sass cache by setting the Sass parameter in the compass configuration file as follows:
sass_options = {:cache_location => "path\to\tmp\sass-cache"}
Source: Sass Link
Ahmad Alfy Feb 18 '13 at 11:37 2013-02-18 11:37
source share