Skip to content

Instantly share code, notes, and snippets.

@nmerouze
Created August 7, 2008 15:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nmerouze/4427 to your computer and use it in GitHub Desktop.
Save nmerouze/4427 to your computer and use it in GitHub Desktop.
def flash_messages
fl = ''
[:help, :notice, :error].each do |name|
next unless flash[name]
fl << content_tag(:div, flash[name], :class => "flash #{name}")
flash[name] = nil
end
fl unless fl.empty?
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment