From ddcc400293f0857d48b0fec9a5ec8ac70f9043c5 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Mon, 17 Jan 2005 01:13:15 +0000 Subject: Made ready for release of 0.9.4 git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@439 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- railties/environments/development.rb | 1 + railties/environments/production.rb | 1 + railties/environments/test.rb | 1 + 3 files changed, 3 insertions(+) (limited to 'railties/environments') 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 -- cgit v1.2.3