From 4461f1be5f9b993e80d14a7a3e02e35b810f8c1d Mon Sep 17 00:00:00 2001 From: Scott Davis Date: Thu, 9 Jun 2011 16:37:50 -0400 Subject: [PATCH] removed all cacheing from importer class it causes more problems then it was worth --- lib/compass/sprite_importer.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/compass/sprite_importer.rb b/lib/compass/sprite_importer.rb index e2948271..94d3b11e 100644 --- a/lib/compass/sprite_importer.rb +++ b/lib/compass/sprite_importer.rb @@ -100,7 +100,7 @@ module Compass # Returns the sass options for this sprite def sass_options - @sass_options ||= options.merge(:filename => name, :syntax => :scss, :importer => self) + options.merge(:filename => name, :syntax => :scss, :importer => self) end # Returns a Sass::Engine for this sprite object