Class: ActionDispatch::Cookies::AbstractCookieJar
- Inherits:
-
Object
- Object
- ActionDispatch::Cookies::AbstractCookieJar
- Includes:
- ChainedCookieJars
- Defined in:
- lib/action_dispatch/middleware/cookies.rb
Overview
:nodoc:
Direct Known Subclasses
EncryptedKeyRotatingCookieJar, PermanentCookieJar, SignedKeyRotatingCookieJar
Instance Method Summary collapse
- #[](name) ⇒ Object
- #[]=(name, options) ⇒ Object
-
#initialize(parent_jar) ⇒ AbstractCookieJar
constructor
A new instance of AbstractCookieJar.
Methods included from ChainedCookieJars
#encrypted, #permanent, #signed, #signed_or_encrypted
Constructor Details
#initialize(parent_jar) ⇒ AbstractCookieJar
Returns a new instance of AbstractCookieJar.
492 493 494 |
# File 'lib/action_dispatch/middleware/cookies.rb', line 492 def initialize(parent_jar) @parent_jar = parent_jar end |
Instance Method Details
#[](name) ⇒ Object
496 497 498 499 500 501 502 503 504 505 506 |
# File 'lib/action_dispatch/middleware/cookies.rb', line 496 def [](name) if data = @parent_jar[name.to_s] result = parse(name, data, purpose: "cookie.#{name}") if result.nil? parse(name, data) else result end end end |
#[]=(name, options) ⇒ Object
508 509 510 511 512 513 514 515 516 517 |
# File 'lib/action_dispatch/middleware/cookies.rb', line 508 def []=(name, ) if .is_a?(Hash) .symbolize_keys! else = { value: } end commit(name, ) @parent_jar[name] = end |