Class: ActionDispatch::Cookies::PermanentCookieJar

Inherits:
CookieJar show all
Defined in:
actionpack/lib/action_dispatch/middleware/cookies.rb

Overview

:nodoc:

Constant Summary

Constants inherited from CookieJar

CookieJar::DOMAIN_REGEXP

Instance Method Summary collapse

Methods inherited from CookieJar

#[], build, #clear, #delete, #each, #handle_options, #key?, #permanent, #recycle!, #update, #write

Methods included from Enumerable

#as_json, #each_with_object, #exclude?, #group_by, #index_by, #many?, #sum

Constructor Details

#initialize(parent_jar, secret) ⇒ PermanentCookieJar

Returns a new instance of PermanentCookieJar.



253
254
255
# File 'actionpack/lib/action_dispatch/middleware/cookies.rb', line 253

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



272
273
274
# File 'actionpack/lib/action_dispatch/middleware/cookies.rb', line 272

def method_missing(method, *arguments, &block)
  @parent_jar.send(method, *arguments, &block)
end

Instance Method Details

#[]=(key, options) ⇒ Object



257
258
259
260
261
262
263
264
265
266
# File 'actionpack/lib/action_dispatch/middleware/cookies.rb', line 257

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

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

#signedObject



268
269
270
# File 'actionpack/lib/action_dispatch/middleware/cookies.rb', line 268

def signed
  @signed ||= SignedCookieJar.new(self, @secret)
end