aboutsummaryrefslogtreecommitdiffstats
path: root/railties/environments/environment.rb
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-09-13 10:07:37 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-09-13 10:07:37 +0000
commit6a0e41c158d327967e75fc93f001452449e8afe1 (patch)
treeda3c23709353ad237aa710443b69d96aaf0e1bd0 /railties/environments/environment.rb
parent6e8e9c20cb9ad2ec3c880ad81e3ecead0bc3cf28 (diff)
downloadrails-6a0e41c158d327967e75fc93f001452449e8afe1.tar.gz
rails-6a0e41c158d327967e75fc93f001452449e8afe1.tar.bz2
rails-6a0e41c158d327967e75fc93f001452449e8afe1.zip
Reformed environments files to the new config style
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2232 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'railties/environments/environment.rb')
-rw-r--r--railties/environments/environment.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/railties/environments/environment.rb b/railties/environments/environment.rb
index ea381a158a..716659decd 100644
--- a/railties/environments/environment.rb
+++ b/railties/environments/environment.rb
@@ -20,11 +20,11 @@ Rails::Initializer.run do |config|
# Use the database for sessions instead of the file system
# (create the session table with 'rake create_sessions_table')
- # config.session_store = :active_record_store
+ # config.action_controller.session_store = :active_record_store
# Enable page/fragment caching by setting a file-based store
# (remember to create the caching directory and make it readable to the application)
- # config.fragment_store = :file_store, "#{RAILS_ROOT}/cache"
+ # config.action_controller.fragment_cache_store = :file_store, "#{RAILS_ROOT}/cache"
# See Rails::Configuration for more options
end