crowdAI/crowdai

View on GitHub
app/views/shared/_error_messages.html.erb

Summary

Maintainability
Test Coverage
<% if target.errors.any? %>
  <div>
    <b><%= pluralize(target.errors.count, "error") %> prevented this record from being saved:</b>
    <ul>
      <% target.errors.full_messages.each do |msg| %>
        <li><%= msg %></li>
      <% end %>
    </ul>
  </div>
<% end %>