Skip to content

Commit

Permalink
Fix case alignment
Browse files Browse the repository at this point in the history
  • Loading branch information
Craig McNamara committed Jan 7, 2015
1 parent 5d5d271 commit 8b436a0
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions lib/compass-rails/patches/sass_importer.rb
Original file line number Diff line number Diff line change
Expand Up @@ -64,12 +64,12 @@ def sass_importer(context, path)

def sprockets_cache_store
case Rails.application.config.assets.cache_store
when :null_store
Sprockets::Cache::NullStore.new
when :memory_store, :mem_cache_store
Sprockets::Cache::MemoryStore.new
else
Sprockets::Cache::FileStore.new(Dir::tmpdir)
when :null_store
Sprockets::Cache::NullStore.new
when :memory_store, :mem_cache_store
Sprockets::Cache::MemoryStore.new
else
Sprockets::Cache::FileStore.new(Dir::tmpdir)
end
end
end
Expand Down

0 comments on commit 8b436a0

Please sign in to comment.