diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2014-06-19 16:43:47 -0300 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2014-06-19 16:43:47 -0300 |
commit | d4ca0a44c7564f939bc3df2f770083d709c13e95 (patch) | |
tree | 504d290d70a8b955939fb90ef1ff5ff2d6c3be56 /actionview/lib | |
parent | 70de7dda8c09c1e02e0281879ef6fb8f372ada5e (diff) | |
parent | c782641002b7df1ecd693a6c5c439f3a4c036351 (diff) | |
download | rails-d4ca0a44c7564f939bc3df2f770083d709c13e95.tar.gz rails-d4ca0a44c7564f939bc3df2f770083d709c13e95.tar.bz2 rails-d4ca0a44c7564f939bc3df2f770083d709c13e95.zip |
Merge pull request #15450 from aditya-kapoor/remove-nbsp-debug
remove unnecessary gsub for space in ActionView::Helpers#debug
Diffstat (limited to 'actionview/lib')
-rw-r--r-- | actionview/lib/action_view/helpers/debug_helper.rb | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/actionview/lib/action_view/helpers/debug_helper.rb b/actionview/lib/action_view/helpers/debug_helper.rb index 16cddec339..ba47eee9ba 100644 --- a/actionview/lib/action_view/helpers/debug_helper.rb +++ b/actionview/lib/action_view/helpers/debug_helper.rb @@ -16,15 +16,15 @@ module ActionView # # => # <pre class='debug_dump'>--- !ruby/object:User # attributes: - # updated_at: - # username: testing - # age: 42 - # password: xyz - # created_at: + # updated_at: + # username: testing + # age: 42 + # password: xyz + # created_at: # </pre> def debug(object) Marshal::dump(object) - object = ERB::Util.html_escape(object.to_yaml).gsub(" ", " ").html_safe + object = ERB::Util.html_escape(object.to_yaml) 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 |