Rails helper: display flash hash
<code rails>
def print_flash
msg = ''
flash.each_pair do |type, message|
text = content_tag(:strong, type.to_s.capitalize) << ": " << message
msg << content_tag(:p, text, :class => "flash #{type}")
end
msg
end
DZone Snippets > tymps > helper
11391 users tagging and storing useful source code snippets
Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world