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, #delete, #handle_options, #permanent, #write
Constructor Details
#initialize(parent_jar, secret) ⇒ PermanentCookieJar
Returns a new instance of PermanentCookieJar.
217 218 219 |
# File 'lib/action_dispatch/middleware/cookies.rb', line 217 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
236 237 238 |
# File 'lib/action_dispatch/middleware/cookies.rb', line 236 def method_missing(method, *arguments, &block) @parent_jar.send(method, *arguments, &block) end |
Instance Method Details
#[]=(key, options) ⇒ Object
221 222 223 224 225 226 227 228 229 230 |
# File 'lib/action_dispatch/middleware/cookies.rb', line 221 def []=(key, ) if .is_a?(Hash) .symbolize_keys! else = { :value => } end [:expires] = 20.years.from_now @parent_jar[key] = end |
#signed ⇒ Object
232 233 234 |
# File 'lib/action_dispatch/middleware/cookies.rb', line 232 def signed @signed ||= SignedCookieJar.new(self, @secret) end |