JordanHatch/maslow-redux

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

Summary

Maintainability
Test Coverage
<% [:notice, :alert, :error].select { |k| flash[k].present? }.each do |k| %>
  <div class="main-alert <%= k %>">
    <span class="icon"></span>
    <span class="message"><%= flash[k] %></span>
  </div>
<% end %>