Mensagens em Flash Ruby on Rails com Foundation

Há uma boa dica de como fazer isso com o Bootstrap, https://coderwall.com/p/jzofog . Mas se você estiver usando o Foundation, aqui está como você pode fazer o mesmo com o Foundation.

Adicione o seguinte método ao ApplicationHelper:

def foundation_flash_class(level)
case level.to_sym
when :notice then "alert-box"
when :alert then "alert-box warning"
when :success then "alert-box success"
when :info then "alert-box info"
when :error then "alert-box alert"
when :secondary then "alert-box secondary"
end
end

e adicione o seguinte ao layout:

- flash.each do |key, value|
.alert-box{class: foundation_flash_class(key)}(data-alert)
= value
%a.close{href:"#"} ×