Attributes:
<% @attributes.each_pair do |key, value| %> <% next if value.is_a?(Array) || value.is_a?(Hash) %> <% key = key.to_s.titleize %> <% if value.nil? %> <% else %> <% end %> <% end %> <% @attributes.each_pair do |key, value| %> <% next unless value.is_a?(Array) %> <% key = key.to_s.titleize %> <% if value.empty? %> <% else %> <% first = true %> <% value.each do |item| %> <% if first %> <% if item.is_a?(Hash) || item.is_a?(Array) %> <% else %> <% end %> <% first = false %> <% else %> <% if item.is_a?(Hash) || item.is_a?(Array) %> <% else %> <% end %> <% end %> <% end %> <% end %> <% end %> <% @attributes.each_pair do |key, value| %> <% next unless value.is_a?(Hash) %> <% key = key.to_s.titleize %> <% end %>
<%= value %>
<%= pretty_print_array_or_hash(item) %>
<%= item %>
<%= pretty_print_array_or_hash(item) %>
<%= item %>
<% if value.empty? %> <% else %>
<% value.each_pair do |key2, value2| %> <% if value2.is_a?(Hash) || value2.is_a?(Array) %> <% else %> <% end %> <% end %>
<%= pretty_print_array_or_hash(value2) %>
<%= value2 %>
<% end %>