use .sass-cache everywhere

This commit is contained in:
Thomas Reynolds 2013-01-13 15:22:36 -08:00
parent e3bb956649
commit c7e35b95ba
3 changed files with 8 additions and 8 deletions

View file

@ -14,10 +14,10 @@ module Middleman
# Default sass options
app.set :sass, {}
# Location of SASS .sass_cache directory.
# Location of SASS .sass-cache directory.
# @return [String]
# set :sass_cache_path, "/tmp/middleman-app-name/sass_cache"
app.set(:sass_cache_path) { File.join(app.root_path, '.sass_cache') } # runtime compile of path
# set :sass_cache_path, "/tmp/middleman-app-name/sass-cache"
app.set(:sass_cache_path) { File.join(app.root_path, '.sass-cache') } # runtime compile of path
app.before_configuration do
template_extensions :scss => :css,