diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2006-03-20 07:19:27 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2006-03-20 07:19:27 +0000 |
commit | 49414750693a61ad078549b9edb5260f32f69561 (patch) | |
tree | 0b5598daaaa51f6f0ef6cc623d7c824ec47258a4 /railties | |
parent | 1aff68d61574410fa942aa34ec261c68565e48c1 (diff) | |
download | rails-49414750693a61ad078549b9edb5260f32f69561.tar.gz rails-49414750693a61ad078549b9edb5260f32f69561.tar.bz2 rails-49414750693a61ad078549b9edb5260f32f69561.zip |
Turn RJS debugging on by default and show the source code when an exception is caught [DHH]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4003 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'railties')
-rw-r--r-- | railties/environments/development.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/railties/environments/development.rb b/railties/environments/development.rb index dbf77d03b7..cbd8529e6c 100644 --- a/railties/environments/development.rb +++ b/railties/environments/development.rb @@ -14,6 +14,7 @@ config.breakpoint_server = true # Show full error reports and disable caching config.action_controller.consider_all_requests_local = true config.action_controller.perform_caching = false +config.action_view.debug_rjs = true # Don't care if the mailer can't send config.action_mailer.raise_delivery_errors = false |