rokumatsumoto/boyutluseyler

View on GitHub
app/views/layouts/_flash.html.haml

Summary

Maintainability
Test Coverage
- flash.each do |key, value|
  -# Don't show a flash message if the message is nil
  - if value.present?
    %div{ class: "alert alert-#{key} alert-dismissible fade show ",
    role: 'alert' }
      - if value.is_a?(String)
        %span.alert-inner--text= sanitize(value)