aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_dispatch/middleware/cookies.rb
Commit message (Expand)AuthorAgeFilesLines
* Revert "Merge pull request #29540 from kirs/rubocop-frozen-string"Matthew Draper2017-07-021-1/+0
* Enforce frozen string in RubocopKir Shatrov2017-07-011-0/+1
* set message_encryptor default cipher to aes-256-gcmAssain2017-06-121-1/+1
* Use mattr_accessor default: option throughout the projectGenadi Samokovarov2017-06-031-2/+1
* AEAD encrypted cookies and sessionsMichael Coyne2017-05-221-3/+48
* [docs] fix ActionDispatch documentationHrvoje Šimić2017-03-131-5/+5
* Reduce string objects by using \ instead of + or << for concatenating stringsAkira Matsuda2017-01-121-1/+1
* Merge pull request #26905 from bogdanvlviv/docsAndrew White2016-11-131-2/+2
|\
| * Add missing `+` around a some literals.bogdanvlviv2016-10-271-2/+2
* | Add more rubocop rules about whitespacesRafael Mendonça França2016-10-291-2/+2
|/
* Start passing cipher from EncryptedCookieJar since we use it to determine key...Vipul A M2016-09-011-7/+5
* Follow up of #25602Vipul A M2016-09-011-4/+6
* Add three new rubocop rulesRafael Mendonça França2016-08-161-2/+2
* normalizes indentation and whitespace across the projectXavier Noria2016-08-061-21/+21
* modernizes hash syntax in actionpackXavier Noria2016-08-061-1/+1
* applies new string literal convention in actionpack/libXavier Noria2016-08-061-14/+14
* Join values using '; ' as per RFC specAndrew White2016-02-161-1/+1
* Add require and move escape to private methodAndrew White2016-02-161-1/+6
* Escape cookie's key and value in ActionController::TestCaseTakayuki Matsubara2015-12-301-1/+1
* Stop violating law of demeter in response cookie_jareileencodes2015-12-061-0/+6
* Add missing example for cookies.encrypted [ci skip]Nicolas Cavigneaux2015-11-201-0/+7
* Don't set a nil Set-Cookie header when there aren't any cookies. Omit the hea...Jeremy Daer2015-10-011-1/+3
* build the Set-Cookie header functionallyAaron Patterson2015-09-241-5/+18
* Push key_generator into SerializedCookieJarsKasper Timm Hansen2015-09-081-4/+4
* Move the request method in to the AbstractCookieJarKasper Timm Hansen2015-09-081-4/+3
* Pull up parse to the legacy upgrading moduleKasper Timm Hansen2015-09-081-10/+5
* Call super to remove the decrypt_and_verify methodKasper Timm Hansen2015-09-081-8/+4
* Call super to remove the verify methodKasper Timm Hansen2015-09-081-8/+2
* Add parse method to share deserialization logic.Kasper Timm Hansen2015-09-081-19/+12
* Add commit in the EncryptedCookieJarKasper Timm Hansen2015-09-081-17/+7
* Use commit in the SignedCookieJarKasper Timm Hansen2015-09-081-15/+6
* Add commit method to share option normalizationKasper Timm Hansen2015-09-081-4/+12
* Add AbstractCookieJar class.Kasper Timm Hansen2015-09-081-1/+3
* stop inheriting from Rack::RequestAaron Patterson2015-09-041-2/+2
* Fix bug where cookies mutated by request were not persistedeileencodes2015-09-011-0/+7
* Remove unused requiresMarcin Olichwirowicz2015-08-251-2/+0
* Remove unused block argumentsamitkumarsuroliya2015-08-251-1/+1
* convert more `@env` access to get / set headerAaron Patterson2015-08-231-11/+13
* remove dead codeAaron Patterson2015-08-061-5/+0
* ask the request for the cookie jarAaron Patterson2015-08-061-1/+8
* add a setter for the cookie jarAaron Patterson2015-08-061-1/+7
* remove request reference from chained jarsAaron Patterson2015-08-061-22/+25
* remove `@host` ivarAaron Patterson2015-08-051-6/+4
* remove @secure ivarAaron Patterson2015-08-051-5/+3
* CookieJar does not need the key_generator parameter anymoreAaron Patterson2015-08-051-3/+2
* eliminate key_generator ivarAaron Patterson2015-08-051-11/+14
* sop passing host and secure to the build methodAaron Patterson2015-08-051-2/+4
* stop using an options hash with the cookie jarAaron Patterson2015-08-051-38/+30
* move env access to the request object.Aaron Patterson2015-08-051-13/+45
* Send cookies with requesteileencodes2015-07-071-0/+4