diff options
author | Carlhuda <carlhuda@engineyard.com> | 2010-03-04 12:12:04 -0800 |
---|---|---|
committer | Carlhuda <carlhuda@engineyard.com> | 2010-03-04 12:12:04 -0800 |
commit | 9795bf0e74612aa542404460220720c14fac1038 (patch) | |
tree | 1453fe51b6003ed28e9d459609e4b94f54674992 /railties/guides/source/configuring.textile | |
parent | 17769696279810c6c24a10b0d47f9b712205f0ce (diff) | |
download | rails-9795bf0e74612aa542404460220720c14fac1038.tar.gz rails-9795bf0e74612aa542404460220720c14fac1038.tar.bz2 rails-9795bf0e74612aa542404460220720c14fac1038.zip |
Fix Sam Ruby's tests and deprecation warnings
Diffstat (limited to 'railties/guides/source/configuring.textile')
-rw-r--r-- | railties/guides/source/configuring.textile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/guides/source/configuring.textile b/railties/guides/source/configuring.textile index 0e6f981168..5418ad7dd4 100644 --- a/railties/guides/source/configuring.textile +++ b/railties/guides/source/configuring.textile @@ -159,7 +159,7 @@ WARNING: Threadsafe operation in incompatible with the normal workings of develo * +config.action_controller.relative_url_root+ can be used to tell Rails that you are deploying to a subdirectory. The default is +ENV['RAILS_RELATIVE_URL_ROOT']+. -* +config.action_controller.session_store+ sets the name of the store for session data. The default is +:cookie_store+; other valid options include +:active_record_store+, +:mem_cache_store+ or the name of your own custom class. +* +config.action_dispatch.session_store+ sets the name of the store for session data. The default is +:cookie_store+; other valid options include +:active_record_store+, +:mem_cache_store+ or the name of your own custom class. The caching code adds two additional settings: |