diff options
author | Xavier Noria <fxn@hashref.com> | 2010-01-01 20:17:29 +0100 |
---|---|---|
committer | Jeremy Kemper <jeremy@bitsweat.net> | 2010-01-01 14:28:55 -0800 |
commit | 7f7f5d619a6e0988359ac18de33d6f6e49b42838 (patch) | |
tree | 1b4d96cce63bcd195aebcc60bfb6e89679f81c12 | |
parent | da97b51fdf4e78724b48c1e74f24e135fb0b95e6 (diff) | |
download | rails-7f7f5d619a6e0988359ac18de33d6f6e49b42838.tar.gz rails-7f7f5d619a6e0988359ac18de33d6f6e49b42838.tar.bz2 rails-7f7f5d619a6e0988359ac18de33d6f6e49b42838.zip |
requires active_support/gzip in CompressedMemCacheStore because it uses ActiveSupport::Gzip
-rw-r--r-- | activesupport/lib/active_support/cache/compressed_mem_cache_store.rb | 2 |
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 d87eb17337..d2370d78c5 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/gzip' + module ActiveSupport module Cache class CompressedMemCacheStore < MemCacheStore |