Class: ActionController::Flash::FlashNow
- Defined in:
- lib/action_controller/flash.rb
Overview
:nodoc:
Instance Method Summary collapse
- #[]=(k, v) ⇒ Object
-
#initialize(flash) ⇒ FlashNow
constructor
A new instance of FlashNow.
Constructor Details
#initialize(flash) ⇒ FlashNow
Returns a new instance of FlashNow.
35 36 37 |
# File 'lib/action_controller/flash.rb', line 35 def initialize flash @flash = flash end |
Instance Method Details
#[]=(k, v) ⇒ Object
39 40 41 42 43 |
# File 'lib/action_controller/flash.rb', line 39 def []=(k, v) @flash[k] = v @flash.discard(k) v end |