diff options
author | Rick Olson <technoweenie@gmail.com> | 2007-10-03 14:52:56 +0000 |
---|---|---|
committer | Rick Olson <technoweenie@gmail.com> | 2007-10-03 14:52:56 +0000 |
commit | 408f4964022a4ff47c24763af350c6d527855552 (patch) | |
tree | 862ad862ae7674b96ef7ecfd05e136e44e43ef18 /actionpack/lib | |
parent | 904df818d61b695a5f9508864137d13fffa22d15 (diff) | |
download | rails-408f4964022a4ff47c24763af350c6d527855552.tar.gz rails-408f4964022a4ff47c24763af350c6d527855552.tar.bz2 rails-408f4964022a4ff47c24763af350c6d527855552.zip |
Use #require_library_or_gem to load the memcache library for the MemCache session and fragment cache stores. Closes #8662. [Rick]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@7725 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/lib')
-rw-r--r-- | actionpack/lib/action_controller/caching.rb | 1 | ||||
-rw-r--r-- | actionpack/lib/action_controller/session/mem_cache_store.rb | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/actionpack/lib/action_controller/caching.rb b/actionpack/lib/action_controller/caching.rb index a072080849..d04979644b 100644 --- a/actionpack/lib/action_controller/caching.rb +++ b/actionpack/lib/action_controller/caching.rb @@ -485,6 +485,7 @@ module ActionController #:nodoc: end end + require_library_or_gem 'memcache' class MemCacheStore < MemoryStore #:nodoc: attr_reader :addresses diff --git a/actionpack/lib/action_controller/session/mem_cache_store.rb b/actionpack/lib/action_controller/session/mem_cache_store.rb index e62c0ef9cd..6fd3ed7c7b 100644 --- a/actionpack/lib/action_controller/session/mem_cache_store.rb +++ b/actionpack/lib/action_controller/session/mem_cache_store.rb @@ -9,7 +9,7 @@ begin require 'cgi/session' - require 'memcache' + require_library_or_gem 'memcache' class CGI class Session |