aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_dispatch/middleware/cookies.rb
Commit message (Expand)AuthorAgeFilesLines
* Dont stream back cookie value if it was set to the same valuebrainopia2012-08-101-4/+6
* adds a missing require from Active SupportXavier Noria2012-07-281-0/+1
* Get rid of the close checks since we cannot reliably close the session anyway.José Valim2011-12-161-10/+0
* configuration option to always write cookielest2011-11-231-1/+4
* Remove superfluous assignment in cookiesAlexey Vakhov2011-10-181-1/+1
* CookieJar is enumerable. fixes #2795Aaron Patterson2011-09-011-0/+5
* Add has_key? and key? methods to CookieJar removed in 0ca69ca65f83b4bb34f8José Valim2011-06-301-0/+5
* Add backward compatibility for testing cookiesAndrew White2011-06-051-1/+1
* Ensure cookie keys are stringsAndrew White2011-06-051-2/+3
* Refactor ActionController::TestCase cookiesAndrew White2011-06-041-0/+10
* Merge branch 'master' of git://github.com/lifo/docrailsXavier Noria2011-05-251-1/+1
|\
| * Remove extra white spaces on ActionPack docs.Sebastian Martinez2011-05-231-1/+1
* | Remove extra white-space on some exception messages.Sebastian Martinez2011-05-231-1/+1
* | Replace references to ActiveSupport::SecureRandom with just SecureRandom, and...Jon Leighton2011-05-231-1/+1
* | fixing sym and string cookie name, two cookies to browser bug.steve2011-05-191-3/+3
|/
* CookieJar should prefer composition over inheritanceAaron Patterson2011-04-061-6/+10
* raise if someone tries to modify the cookies when it was already streamed bac...Santiago Pastorino2011-04-061-0/+12
* Add tld_length option when using domain :all in cookiesbrainopia2011-01-211-9/+9
* Support list of possible domains for cookiesbrainopia2011-01-211-0/+3
* Fix edge cases for domain :all option on cookie storebrainopia2010-12-161-2/+5
* Resolving LH #5986, cookies doc updatesAditya Sanghi2010-11-261-3/+10
* Ensure that Rails.env is defined firstAndrew White2010-10-271-1/+1
* Don't write out secure cookies unless the request is secureAndrew White2010-10-251-3/+11
* expand cookie examples with signed and permanent methodsJoost Baaij2010-08-271-2/+11
* Allow for any possible TLD when using the :all option with the cookie session...Bryce Thornton2010-08-151-8/+18
* Small fix in cookie docs and trailing whitespacesCarlos Antonio da Silva2010-07-151-7/+7
* Refactored duplication into a separate method. Dropped class variable.Rizwan Reza2010-06-111-15/+17
* Adding missing docs to delete cookies with :all which were added that way.Rizwan Reza2010-06-111-1/+2
* Took out the domain option logic to cookies.rb.Rizwan Reza2010-06-111-2/+32
* Avoid creating a Rack::Response object in the cookie middleware since it may ...José Valim2010-05-181-9/+13
* Simplify cookie_store by simply relying on cookies.signed.José Valim2010-05-181-1/+31
* Rename config.cookie_secret to config.secret_token and pass it as configurati...José Valim2010-04-051-18/+18
* Fix signed cookies by explicitly passing config to the cookie jarJeremy Kemper2010-04-041-23/+19
* Deprecate cookie_verifier_secret in favor of config.cookie_secret allowing si...José Valim2010-03-311-3/+3
* Deleting and setting a cookie in the same request was brokenMathias Biilmann Christensen2010-03-171-0/+1
* Accessing nonexistant cookies through the signed jar should not raise anJoshua Peek2010-01-171-1/+3
* Cookies middlewareJoshua Peek2010-01-161-0/+214