aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_dispatch
diff options
context:
space:
mode:
authorAkira Matsuda <ronnie@dio.jp>2013-01-07 07:36:11 +0900
committerAkira Matsuda <ronnie@dio.jp>2013-01-07 07:37:23 +0900
commit3c21237c37fed9d726bcf2816bf1adc4635f4956 (patch)
treeeafdae1d97c622b5f867acb1eda742f6893cc1dc /actionpack/lib/action_dispatch
parentc8e632bd9fe246aab16496e87184ace20ab3ce27 (diff)
downloadrails-3c21237c37fed9d726bcf2816bf1adc4635f4956.tar.gz
rails-3c21237c37fed9d726bcf2816bf1adc4635f4956.tar.bz2
rails-3c21237c37fed9d726bcf2816bf1adc4635f4956.zip
Reduce number of Strings a bit
Diffstat (limited to 'actionpack/lib/action_dispatch')
-rw-r--r--actionpack/lib/action_dispatch/middleware/show_exceptions.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/actionpack/lib/action_dispatch/middleware/show_exceptions.rb b/actionpack/lib/action_dispatch/middleware/show_exceptions.rb
index 2b37a8d026..07ecf9702e 100644
--- a/actionpack/lib/action_dispatch/middleware/show_exceptions.rb
+++ b/actionpack/lib/action_dispatch/middleware/show_exceptions.rb
@@ -16,9 +16,9 @@ module ActionDispatch
# catches the exceptions and returns a FAILSAFE_RESPONSE.
class ShowExceptions
FAILSAFE_RESPONSE = [500, { 'Content-Type' => 'text/plain' },
- ["500 Internal Server Error\n" <<
- "If you are the administrator of this website, then please read this web " <<
- "application's log file and/or the web server's log file to find out what " <<
+ ["500 Internal Server Error\n" \
+ "If you are the administrator of this website, then please read this web " \
+ "application's log file and/or the web server's log file to find out what " \
"went wrong."]]
def initialize(app, exceptions_app)