123456789_123456789_123456789_123456789_123456789_

Class: ActionController::RequestForgeryProtection::ProtectionMethods::NullSession::NullCookieJar

Do not use. This class is for internal use only.
Relationships & Source Files
Super Chains via Extension / Inclusion / Inheritance
Class Chain:
Instance Chain:
Inherits: ActionDispatch::Cookies::CookieJar
Defined in: actionpack/lib/action_controller/metal/request_forgery_protection.rb

Class Attribute Summary

Class Method Summary

Instance Attribute Summary

Instance Method Summary

::ActionDispatch::Cookies::CookieJar - Inherited

#[]

Returns the value of the cookie by name, or nil if no such cookie exists.

#[]=

Sets the cookie named name.

#clear

Removes all cookies on the client machine by calling delete for each cookie.

#commit!,
#delete

Removes the cookie on the client machine by setting the value to an empty string and the expiration date in the past.

#deleted?

Whether the given cookie is to be deleted by this CookieJar.

#each, #fetch,
#has_key?
#key?,
#to_hash

Returns the cookies as ::Hash.

#to_header, #update, #update_cookies_from_jar, #write, #escape, #handle_options, #write_cookie?

::Enumerable - Included

#compact_blank

Returns a new ::Array without the blank items.

#exclude?

The negative of the Enumerable#include?.

#excluding

Returns a copy of the enumerable excluding the specified elements.

#in_order_of

Returns a new ::Array where the order has been set to that provided in the series, based on the key of the objects in the original enumerable.

#including

Returns a new array that includes the passed elements.

#index_by

Convert an enumerable to a hash, using the block result as the key and the element as the value.

#index_with

Convert an enumerable to a hash, using the element as the key and the block result as the value.

#maximum

Calculates the maximum from the extracted elements.

#minimum

Calculates the minimum from the extracted elements.

#pick

Extract the given key from the first element in the enumerable.

#pluck

Extract the given key from each element in the enumerable.

#sole

Returns the sole item in the enumerable.

#without
#as_json

::ActiveSupport::EnumerableCoreExt::Constants - Included

::ActionDispatch::Cookies::ChainedCookieJars - Included

#encrypted

Returns a jar that’ll automatically encrypt cookie values before sending them to the client and will decrypt them for read.

#permanent

Returns a jar that’ll automatically set the assigned cookies to have an expiration date 20 years from now.

#signed

Returns a jar that’ll automatically generate a signed representation of cookie value and verify it when reading from the cookie again.

#signed_or_encrypted

Returns the signed or encrypted jar, preferring encrypted if secret_key_base is set.

#encrypted_cookie_cipher, #signed_cookie_digest

Constructor Details

This class inherits a constructor from ActionDispatch::Cookies::CookieJar

Instance Method Details

#write

[ GitHub ]

  
# File 'actionpack/lib/action_controller/metal/request_forgery_protection.rb', line 269

def write(*)
  # nothing
end