Use Sass's Chain and Memory caching for faster caching, store this once in the configuration when watching so Sass doesn't do this with each iteration.

This commit is contained in:
Chris Eppstein 2011-04-20 19:26:07 -07:00
parent 5f1c35d171
commit 4c814f97dd

View File

@ -36,11 +36,24 @@ module Compass
exit 0
end
unless Compass.sass_engine_options[:cache_store]
Compass.configuration.sass_options ||= {}
Compass.configuration.sass_options[:cache_store] =
Sass::CacheStores::Chain.new(
Sass::CacheStores::Memory.new,
Sass::CacheStores::Filesystem.new(
Compass.sass_engine_options[:cache_location] ||
Sass::Engine::DEFAULT_OPTIONS[:cache_location]
)
)
end
check_for_sass_files!(new_compiler_instance)
recompile
require 'fssm'
if options[:poll]
require "fssm/backends/polling"
# have to silence the ruby warning about chaning a constant.