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.
|
2004-11-23 20:04:44 -05:00
|
|
|
module Helpers
|
|
|
|
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
|
|
|
#
|
2012-10-29 07:10:53 -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:
|
|
|
|
# updated_at:
|
|
|
|
# username: testing
|
|
|
|
#
|
|
|
|
# age: 42
|
|
|
|
# password: xyz
|
|
|
|
# created_at:
|
|
|
|
# attributes_cache: {}
|
|
|
|
#
|
|
|
|
# new_record: true
|
|
|
|
# </pre>
|
2004-11-23 20:04:44 -05:00
|
|
|
def debug(object)
|
2013-01-05 00:45:18 -05:00
|
|
|
Marshal::dump(object)
|
2013-03-05 16:06:51 -05:00
|
|
|
object = ERB::Util.html_escape(object.to_yaml).gsub(" ", " ").html_safe
|
2013-01-05 00:45:18 -05:00
|
|
|
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
|
2013-02-23 07:54:17 -05: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
|