aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides/source/configuring.textile
diff options
context:
space:
mode:
authorRyan Bigg <radarlistener@gmail.com>2010-11-26 14:21:04 +1100
committerRyan Bigg <radarlistener@gmail.com>2010-11-26 14:22:24 +1100
commitb4ec8ad09c028a5e322a04eacf487b775a672ec2 (patch)
tree72e37416eb7965d511ee752e9ac0b1cd85c2c57e /railties/guides/source/configuring.textile
parent3eec4d4f93df70ea9c421df44c23ca0d4595534c (diff)
downloadrails-b4ec8ad09c028a5e322a04eacf487b775a672ec2.tar.gz
rails-b4ec8ad09c028a5e322a04eacf487b775a672ec2.tar.bz2
rails-b4ec8ad09c028a5e322a04eacf487b775a672ec2.zip
Separate Action Dispatch and Action Pack sections in Configuration Guide.
Diffstat (limited to 'railties/guides/source/configuring.textile')
-rw-r--r--railties/guides/source/configuring.textile6
1 files changed, 4 insertions, 2 deletions
diff --git a/railties/guides/source/configuring.textile b/railties/guides/source/configuring.textile
index d6df1e7cbe..c948f680f8 100644
--- a/railties/guides/source/configuring.textile
+++ b/railties/guides/source/configuring.textile
@@ -131,8 +131,6 @@ WARNING: Threadsafe operation is 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_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:
* +ActionController::Base.page_cache_directory+ sets the directory where Rails will create cached pages for your web server. The default is +Rails.public_path+ (which is usually set to +Rails.root + "/public"+).
@@ -147,6 +145,10 @@ The Active Record session store can also be configured:
* +ActiveRecord::SessionStore::Session.data_column_name+ sets the name of the column which stores marshaled session data. Defaults to +data+.
+h4. Configuring Action Dispatch
+
+* +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.
+
h4. Configuring Action View
There are only a few configuration options for Action View, starting with four on +ActionView::Base+: