flash_messages helper method to rails 3
1 def flash_messages 2 %w(notice warning error).each do |msg| 3 concat content_tag(:div, content_tag(:p, flash[msg.to_sym]), :class => msg) unless flash[msg.to_sym].blank? 4 end 5 end