diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2005-01-17 01:13:15 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2005-01-17 01:13:15 +0000 |
commit | ddcc400293f0857d48b0fec9a5ec8ac70f9043c5 (patch) | |
tree | abecece1bb0ba5a3d8a2e6a138bab65a61445b65 /railties/environments | |
parent | 9577f0f57c6ad60e82d1ec07d528186918c4a66e (diff) | |
download | rails-ddcc400293f0857d48b0fec9a5ec8ac70f9043c5.tar.gz rails-ddcc400293f0857d48b0fec9a5ec8ac70f9043c5.tar.bz2 rails-ddcc400293f0857d48b0fec9a5ec8ac70f9043c5.zip |
Made ready for release of 0.9.4
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@439 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'railties/environments')
-rw-r--r-- | railties/environments/development.rb | 1 | ||||
-rw-r--r-- | railties/environments/production.rb | 1 | ||||
-rw-r--r-- | railties/environments/test.rb | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/railties/environments/development.rb b/railties/environments/development.rb index 42a43d59fb..d3681e28ca 100644 --- a/railties/environments/development.rb +++ b/railties/environments/development.rb @@ -1,3 +1,4 @@ Dependencies.mechanism = :load ActionController::Base.consider_all_requests_local = true +ActionController::Base.perform_caching = false BREAKPOINT_SERVER_PORT = 42531
\ No newline at end of file diff --git a/railties/environments/production.rb b/railties/environments/production.rb index 2069ebcf15..b464250bef 100644 --- a/railties/environments/production.rb +++ b/railties/environments/production.rb @@ -1,2 +1,3 @@ Dependencies.mechanism = :require ActionController::Base.consider_all_requests_local = false +ActionController::Base.perform_caching = true
\ No newline at end of file diff --git a/railties/environments/test.rb b/railties/environments/test.rb index d4db0e9c64..8aa4c65af2 100644 --- a/railties/environments/test.rb +++ b/railties/environments/test.rb @@ -1,3 +1,4 @@ Dependencies.mechanism = :require ActionController::Base.consider_all_requests_local = true +ActionController::Base.perform_caching = false ActionMailer::Base.delivery_method = :test
\ No newline at end of file |