From 2b2572a2d17c02c9a624ba91b85cb768ff351577 Mon Sep 17 00:00:00 2001 From: Reinier Balt Date: Wed, 27 Feb 2013 12:06:25 +0100 Subject: [PATCH] set caching back to false for development environment this was accidentally added to a previous commit --- config/environments/development.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/environments/development.rb b/config/environments/development.rb index 76d592b4..d0d8ed54 100644 --- a/config/environments/development.rb +++ b/config/environments/development.rb @@ -11,7 +11,7 @@ Tracksapp::Application.configure do # Show full error reports and disable caching config.consider_all_requests_local = true - config.action_controller.perform_caching = true + config.action_controller.perform_caching = false # Don't care if the mailer can't send config.action_mailer.raise_delivery_errors = false