From de47fc2c228d9d2dc494954a6897329ddb447349 Mon Sep 17 00:00:00 2001 From: Bouke van der Bijl Date: Sat, 23 Feb 2013 13:54:17 +0100 Subject: Fix debug helper not inspecting on Exception MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The debug helper should inspect the object when it can't be converted to YAML, this behavior was changed inĀ 8f8d8eb1465069e2ed9b6f2404aa9d02e785f534. --- actionpack/lib/action_view/helpers/debug_helper.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actionpack/lib/action_view/helpers/debug_helper.rb b/actionpack/lib/action_view/helpers/debug_helper.rb index 34fc23ac1a..c29c1b1eea 100644 --- a/actionpack/lib/action_view/helpers/debug_helper.rb +++ b/actionpack/lib/action_view/helpers/debug_helper.rb @@ -32,7 +32,7 @@ module ActionView content_tag(:pre, object, :class => "debug_dump") rescue Exception # errors from Marshal or YAML # Object couldn't be dumped, perhaps because of singleton methods -- this is the fallback - content_tag(:code, object.to_yaml, :class => "debug_dump") + content_tag(:code, object.inspect, :class => "debug_dump") end end end -- cgit v1.2.3