This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
commit a15b3b36008876ba0dfd1d3ceaeb9e676628faa8
tree a6f960efca24a68cf7076c8d51f4918b8e3e391a
parent 654959b5270bd8ceddbf0bb673b85b6f064f8daf
tree a6f960efca24a68cf7076c8d51f4918b8e3e391a
parent 654959b5270bd8ceddbf0bb673b85b6f064f8daf
| name | age | message | |
|---|---|---|---|
| |
MIT-LICENSE | Wed Aug 27 23:10:40 -0700 2008 | |
| |
README | Wed Aug 27 23:41:25 -0700 2008 | |
| |
Rakefile | Wed Aug 27 19:13:19 -0700 2008 | |
| |
examples/ | Thu Aug 28 10:05:37 -0700 2008 | |
| |
init.rb | Wed Aug 27 23:07:13 -0700 2008 | |
| |
lib/ | Mon Jan 19 21:58:28 -0800 2009 |
README
Flash Message Conductor ============ A simple pattern for managing flash messages in your Ruby on Rails application. Example ======= # Controller helpers add_message( 'foo' ) is the equivalent of flash[:message] = 'foo' Controller helpers included: add_message( message ) add_notice( message ) add_error( message ) # View helpers <%= render_flash_messages %> produces: <div id="flash_messages"> <p class="message">You have successfully done XYZ...</p> </div> # or... if you set an error <div id="flash_messages"> <p class="error">Oops! Something went bonkers!</p> </div> Copyright (c) 2008 Planet Argon, released under the MIT license







