diff options
author | José Valim <jose.valim@gmail.com> | 2011-10-12 09:24:13 +0200 |
---|---|---|
committer | José Valim <jose.valim@gmail.com> | 2011-10-12 09:29:40 +0200 |
commit | 2cb2ca68b1973ddd202b094599521e4adc39a217 (patch) | |
tree | 35d12801cc322a6bcc20011c8ba75e79722864ce /actionpack/lib | |
parent | e5d0bb22ef6284430fecb608836c8d2b77b56c8d (diff) | |
download | rails-2cb2ca68b1973ddd202b094599521e4adc39a217.tar.gz rails-2cb2ca68b1973ddd202b094599521e4adc39a217.tar.bz2 rails-2cb2ca68b1973ddd202b094599521e4adc39a217.zip |
Add some implementation docs. closes #3298. closes #2509.
Diffstat (limited to 'actionpack/lib')
-rw-r--r-- | actionpack/lib/action_dispatch/middleware/flash.rb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/actionpack/lib/action_dispatch/middleware/flash.rb b/actionpack/lib/action_dispatch/middleware/flash.rb index 2adbce031b..e59404ef68 100644 --- a/actionpack/lib/action_dispatch/middleware/flash.rb +++ b/actionpack/lib/action_dispatch/middleware/flash.rb @@ -70,6 +70,10 @@ module ActionDispatch end end + # Implementation detail: please do not change the signature of the + # FlashHash class. Doing that will likely affect all Rails apps in + # production as the FlashHash currently stored in their sessions will + # become invalid. class FlashHash include Enumerable |