-require File.expand_path('../boot', __FILE__)
+require File.expand_path("../boot", __FILE__)
-require File.expand_path('../preinitializer', __FILE__)
+require File.expand_path("../preinitializer", __FILE__)
if STATUS == :database_offline
require "action_controller/railtie"
require "sprockets/railtie"
require "rails/test_unit/railtie"
else
- require 'rails/all'
+ require "rails/all"
end
# Require the gems listed in Gemfile, including any gems
# Don't eager load models when the database is offline
config.paths["app/models"].skip_eager_load! if STATUS == :database_offline
+
+ # Use memcached for caching if required
+ if defined?(MEMCACHE_SERVERS)
+ config.cache_store = :mem_cache_store, MEMCACHE_SERVERS, { :namespace => "rails:cache" }
+ end
end
end