aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/cache/compressed_mem_cache_store.rb
diff options
context:
space:
mode:
authorJoshua Peek <josh@joshpeek.com>2008-06-12 14:20:30 -0500
committerJoshua Peek <josh@joshpeek.com>2008-06-12 14:20:30 -0500
commitdd4181f47dc0f166eb5d3e47a4a0dc1594cc5669 (patch)
tree23ecb592850c0ef2e09402f84bc53c4cc93d9603 /activesupport/lib/active_support/cache/compressed_mem_cache_store.rb
parentd4c58c7928374c1deb533d69252fecd4068a8c11 (diff)
downloadrails-dd4181f47dc0f166eb5d3e47a4a0dc1594cc5669.tar.gz
rails-dd4181f47dc0f166eb5d3e47a4a0dc1594cc5669.tar.bz2
rails-dd4181f47dc0f166eb5d3e47a4a0dc1594cc5669.zip
Ensure MemCacheStore is required when using CompressedMemCacheStore since they are lazy load now.
Diffstat (limited to 'activesupport/lib/active_support/cache/compressed_mem_cache_store.rb')
-rw-r--r--activesupport/lib/active_support/cache/compressed_mem_cache_store.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/cache/compressed_mem_cache_store.rb b/activesupport/lib/active_support/cache/compressed_mem_cache_store.rb
index 9470ac9f66..3f1f9ad179 100644
--- a/activesupport/lib/active_support/cache/compressed_mem_cache_store.rb
+++ b/activesupport/lib/active_support/cache/compressed_mem_cache_store.rb
@@ -1,3 +1,5 @@
+require "active_support/cache/mem_cache_store"
+
module ActiveSupport
module Cache
class CompressedMemCacheStore < MemCacheStore