Class: ActionDispatch::Cookies::PermanentCookieJar

Inherits:
Object
  • Object
show all
Includes:
ChainedCookieJars
Defined in:
lib/action_dispatch/middleware/cookies.rb

Overview

:nodoc:

Instance Method Summary collapse

Methods included from ChainedCookieJars

#encrypted, #permanent, #signed, #signed_or_encrypted

Constructor Details

#initialize(parent_jar, key_generator, options = {}) ⇒ PermanentCookieJar

Returns a new instance of PermanentCookieJar.



373
374
375
376
377
# File 'lib/action_dispatch/middleware/cookies.rb', line 373

def initialize(parent_jar, key_generator, options = {})
  @parent_jar = parent_jar
  @key_generator = key_generator
  @options = options
end

Instance Method Details

#[](name) ⇒ Object



379
380
381
# File 'lib/action_dispatch/middleware/cookies.rb', line 379

def [](name)
  @parent_jar[name.to_s]
end

#[]=(name, options) ⇒ Object



383
384
385
386
387
388
389
390
391
392
# File 'lib/action_dispatch/middleware/cookies.rb', line 383

def []=(name, options)
  if options.is_a?(Hash)
    options.symbolize_keys!
  else
    options = { :value => options }
  end

  options[:expires] = 20.years.from_now
  @parent_jar[name] = options
end