2017-07-23 11:36:41 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2004-11-23 20:04:44 -05:00
|
|
|
module ActionView
|
2010-06-16 14:17:49 -04:00
|
|
|
# = Action View Debug Helper
|
2010-08-14 01:13:00 -04:00
|
|
|
#
|
2010-06-16 14:17:49 -04:00
|
|
|
# Provides a set of methods for making it easier to debug Rails objects.
|
2017-08-26 20:12:19 -04:00
|
|
|
module Helpers #:nodoc:
|
2004-11-23 20:04:44 -05:00
|
|
|
module DebugHelper
|
2012-08-03 01:14:29 -04:00
|
|
|
include TagHelper
|
|
|
|
|
2008-07-16 08:00:36 -04:00
|
|
|
# Returns a YAML representation of +object+ wrapped with <pre> and </pre>.
|
|
|
|
# If the object cannot be converted to YAML using +to_yaml+, +inspect+ will be called instead.
|
|
|
|
# Useful for inspecting an object at the time of rendering.
|
2007-05-06 01:19:02 -04:00
|
|
|
#
|
2014-05-31 14:14:34 -04:00
|
|
|
# @user = User.new({ username: 'testing', password: 'xyz', age: 42})
|
2008-07-16 08:00:36 -04:00
|
|
|
# debug(@user)
|
|
|
|
# # =>
|
|
|
|
# <pre class='debug_dump'>--- !ruby/object:User
|
|
|
|
# attributes:
|
2014-06-14 05:52:09 -04:00
|
|
|
# updated_at:
|
|
|
|
# username: testing
|
|
|
|
# age: 42
|
|
|
|
# password: xyz
|
|
|
|
# created_at:
|
2008-07-16 08:00:36 -04:00
|
|
|
# </pre>
|
2004-11-23 20:04:44 -05:00
|
|
|
def debug(object)
|
2018-02-21 18:40:21 -05:00
|
|
|
Marshal.dump(object)
|
2014-06-14 05:52:09 -04:00
|
|
|
object = ERB::Util.html_escape(object.to_yaml)
|
2016-08-06 13:36:34 -04:00
|
|
|
content_tag(:pre, object, class: "debug_dump")
|
2015-03-05 18:19:44 -05:00
|
|
|
rescue # errors from Marshal or YAML
|
2013-01-05 00:45:18 -05:00
|
|
|
# Object couldn't be dumped, perhaps because of singleton methods -- this is the fallback
|
2016-08-06 13:36:34 -04:00
|
|
|
content_tag(:code, object.inspect, class: "debug_dump")
|
2004-11-23 20:04:44 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2008-07-16 08:00:36 -04:00
|
|
|
end
|