app/views/application/_flash.html.haml

Summary

Maintainability
Test Coverage
.ui-alerts.mtm.mhm
  - flashes = [:success, :warning, :error, :notice, :plain]
  - flashes.each do |f|
    - current_flash = flash[f]
    - f = :confirmation if f == :notice
    - if current_flash
      %div{:class => "ui-alert #{f}"}
        -if current_flash.is_a? Array
          = current_flash.join(", ")
        -else 
          = current_flash