Class: ActionDispatch::Cookies::PermanentCookieJar
- Defined in:
- lib/action_dispatch/middleware/cookies.rb
Overview
:nodoc:
Constant Summary
Constants inherited from CookieJar
Instance Method Summary collapse
- #[]=(key, options) ⇒ Object
-
#initialize(parent_jar, secret) ⇒ PermanentCookieJar
constructor
A new instance of PermanentCookieJar.
- #method_missing(method, *arguments, &block) ⇒ Object
- #signed ⇒ Object
Methods inherited from CookieJar
#[], build, #clear, #delete, #each, #handle_options, #key?, #permanent, #recycle!, #update, #write
Constructor Details
#initialize(parent_jar, secret) ⇒ PermanentCookieJar
Returns a new instance of PermanentCookieJar.
255 256 257 |
# File 'lib/action_dispatch/middleware/cookies.rb', line 255 def initialize(parent_jar, secret) @parent_jar, @secret = parent_jar, secret end |
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing(method, *arguments, &block) ⇒ Object
274 275 276 |
# File 'lib/action_dispatch/middleware/cookies.rb', line 274 def method_missing(method, *arguments, &block) @parent_jar.send(method, *arguments, &block) end |
Instance Method Details
#[]=(key, options) ⇒ Object
259 260 261 262 263 264 265 266 267 268 |
# File 'lib/action_dispatch/middleware/cookies.rb', line 259 def []=(key, ) if .is_a?(Hash) .symbolize_keys! else = { :value => } end [:expires] = 20.years.from_now @parent_jar[key] = end |
#signed ⇒ Object
270 271 272 |
# File 'lib/action_dispatch/middleware/cookies.rb', line 270 def signed @signed ||= SignedCookieJar.new(self, @secret) end |