Class: ActionDispatch::Flash::FlashNow
- Inherits:
-
Object
- Object
- ActionDispatch::Flash::FlashNow
- Defined in:
- lib/action_dispatch/middleware/flash.rb
Overview
:nodoc:
Instance Attribute Summary collapse
-
#flash ⇒ Object
Returns the value of attribute flash.
Instance Method Summary collapse
- #[](k) ⇒ Object
- #[]=(k, v) ⇒ Object
-
#alert=(message) ⇒ Object
Convenience accessor for
flash.now[:alert]=
. -
#initialize(flash) ⇒ FlashNow
constructor
A new instance of FlashNow.
-
#notice=(message) ⇒ Object
Convenience accessor for
flash.now[:notice]=
.
Constructor Details
#initialize(flash) ⇒ FlashNow
Returns a new instance of FlashNow.
84 85 86 |
# File 'lib/action_dispatch/middleware/flash.rb', line 84 def initialize(flash) @flash = flash end |
Instance Attribute Details
#flash ⇒ Object
Returns the value of attribute flash.
82 83 84 |
# File 'lib/action_dispatch/middleware/flash.rb', line 82 def flash @flash end |
Instance Method Details
#[](k) ⇒ Object
95 96 97 |
# File 'lib/action_dispatch/middleware/flash.rb', line 95 def [](k) @flash[k.to_s] end |
#[]=(k, v) ⇒ Object
88 89 90 91 92 93 |
# File 'lib/action_dispatch/middleware/flash.rb', line 88 def []=(k, v) k = k.to_s @flash[k] = v @flash.discard(k) v end |
#alert=(message) ⇒ Object
Convenience accessor for flash.now[:alert]=
.
100 101 102 |
# File 'lib/action_dispatch/middleware/flash.rb', line 100 def alert=() self[:alert] = end |
#notice=(message) ⇒ Object
Convenience accessor for flash.now[:notice]=
.
105 106 107 |
# File 'lib/action_dispatch/middleware/flash.rb', line 105 def notice=() self[:notice] = end |