aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/cache.rb
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@gmail.com>2011-12-12 14:03:50 -0800
committerJosé Valim <jose.valim@gmail.com>2011-12-12 14:03:50 -0800
commitffa8bfeed91a10c3566a95d159645fa20f75c429 (patch)
tree5c7bcee3abd2b895f1550baee8f668489b12ede3 /activesupport/lib/active_support/cache.rb
parentfa1d9a884c0d5b70c97442e3360ac98ca5fa4340 (diff)
parent04d5eae4e835ead8ef785de4eb442893426f4b29 (diff)
downloadrails-ffa8bfeed91a10c3566a95d159645fa20f75c429.tar.gz
rails-ffa8bfeed91a10c3566a95d159645fa20f75c429.tar.bz2
rails-ffa8bfeed91a10c3566a95d159645fa20f75c429.zip
Merge pull request #3954 from bdurand/null_store_2
Add ActiveSupport::Cache::NullStore for testing and development
Diffstat (limited to 'activesupport/lib/active_support/cache.rb')
-rw-r--r--activesupport/lib/active_support/cache.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/cache.rb b/activesupport/lib/active_support/cache.rb
index 07f5fcdeb3..9711ed6f73 100644
--- a/activesupport/lib/active_support/cache.rb
+++ b/activesupport/lib/active_support/cache.rb
@@ -16,6 +16,7 @@ module ActiveSupport
autoload :FileStore, 'active_support/cache/file_store'
autoload :MemoryStore, 'active_support/cache/memory_store'
autoload :MemCacheStore, 'active_support/cache/mem_cache_store'
+ autoload :NullStore, 'active_support/cache/null_store'
# These options mean something to all cache implementations. Individual cache
# implementations may support additional options.