applied my changes - initial import
[boxroom-stian.git] / vendor / plugins / exception_notification / views / exception_notifier / _inspect_model.rhtml
blobe817847e42828496b094b929f861f31c74b0a9ed
1 <% if show_attributes -%>
2 [attributes]
3 <% attrs = inspect_model.attributes -%>
4 <% max = attrs.keys.max { |a,b| a.length <=> b.length } -%>
5 <% attrs.keys.sort.each do |attr| -%>
6 * <%= "%*-s: %s" % [max.length, attr, object_to_yaml(attrs[attr]).gsub(/\n/, "\n  ").strip] %>
7 <% end -%>
8 <% end -%>
10 <% if show_instance_variables -%>
11 [instance variables]
12 <% inspect_model.instance_variables.sort.each do |variable| -%>
13 <%- next if variable == "@attributes" -%>
14 * <%= variable %>: <%= inspect_value(inspect_model.instance_variable_get(variable)) %>
15 <% end -%>
16 <% end -%>