aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_dispatch/middleware/session
Commit message (Expand)AuthorAgeFilesLines
...
* Improve error message for memcache session store when dalli isn't loaded in appGuillermo Iguaran2012-09-071-2/+6
* More fixes for action pack tests with Dalli.Arun Agrawal2012-09-061-3/+3
* Merge pull request #7495 from steveklabnik/issue_7478Aaron Patterson2012-09-011-0/+8
|\
| * Override rack's destroy_session in cookie storeAndreas Loupasakis2012-09-011-0/+8
* | Revert "Merge pull request #7452 from arunagw/memcached_dalli"Jon Leighton2012-08-311-3/+3
|/
* More fixes for action pack tests with Dalli.Arun Agrawal2012-08-271-3/+3
* load active_support/core_ext/object/blank in active_support/railsXavier Noria2012-08-022-2/+0
* Removing ==Examples and last blank lines of docs from actionpackFrancesco Rodriguez2012-05-151-1/+1
* session creation methods to a moduleAaron Patterson2012-05-043-24/+11
* create a request session in the cookie storesAaron Patterson2012-05-041-0/+8
* create a request::session object in the memecache store middlewareAaron Patterson2012-05-041-0/+10
* bread AD::Request::Session to it's own file, consolidate HASH OF DOOM lookupsAaron Patterson2012-05-031-150/+1
* extract options finding to a methodAaron Patterson2012-05-021-4/+7
* testing session store behaviorAaron Patterson2012-05-021-7/+19
* initialize instance variablesAaron Patterson2012-05-021-6/+5
* converted session hash to delegationAaron Patterson2012-05-021-21/+19
* session hash importedAaron Patterson2012-05-021-15/+111
* oops, forgot some semicolonsAaron Patterson2012-05-021-3/+3
* remove unused ivarAaron Patterson2012-05-021-4/+3
* use hash fetches to populate the :id valueAaron Patterson2012-05-021-12/+7
* imported options, switched to object compositionAaron Patterson2012-05-021-13/+56
* * move exception message to exception constructorAaron Patterson2012-05-021-5/+11
* Support cookie jar options for all cookie storesbrainopia2012-04-301-0/+7
* Return the same session data object when setting session idCarlos Antonio da Silva2012-03-261-1/+2
* remove unnecessary memcache equire in ActionDispatch::Session::CacheStoreBrian Durand2012-02-281-1/+0
* remove checks for encodings availabilitySergey Nartimov2011-12-251-1/+1
* Get rid of the close checks since we cannot reliably close the session anyway.José Valim2011-12-161-4/+0
* Add ActionDispatch::Session::CacheStore as a generic way of storing sessions ...Brian Durand2011-10-211-0/+50
* Split long string into multiple shorter ones Daniel Schierbeck2011-08-291-1/+4
* removed deprecated methods, and related tests, from ActionPackJosh Kalderimis2011-05-241-7/+1
* Replace references to ActiveSupport::SecureRandom with just SecureRandom, and...Jon Leighton2011-05-231-1/+1
* Fix renew feature on cookies.José Valim2011-05-041-1/+1
* generated session ids should be encoded as UTF-8Aaron Patterson2011-04-141-1/+3
* Initialize sid should just skip instance variables.José Valim2010-10-041-0/+7
* Rely on Rack::Session stores API for more compatibility across the Ruby world.José Valim2010-10-033-321/+76
* no need to check for nil?Neeraj Singh2010-09-301-1/+1
* Remove more warnings on AP.Emilio Tagua2010-09-281-2/+2
* Only send secure cookies over SSL.W. Andrew Loe III2010-09-131-1/+4
* Revert "Avoid uneeded queries in session stores if sid is not given."José Valim2010-07-292-5/+3
* Set session options id to nil is respected and cancels lazy loading.José Valim2010-07-181-2/+2
* Avoid uneeded queries in session stores if sid is not given.José Valim2010-07-182-3/+5
* Fixed many references to the old config/environment.rb and Rails::InitializerBenjamin Quorning2010-07-131-1/+1
* porting session.clear fix to master branch. [#5030 state:resolved]Aaron Patterson2010-07-011-0/+5
* Fixed that an ArgumentError is thrown when request.session_options[:id] is re...Michael Lovitt2010-06-272-36/+38
* Do not mark the session as loaded if an error happened while doing it.José Valim2010-06-251-2/+1
* Calling exists? in the session store, without checking for stale sessions, wa...José Valim2010-06-252-10/+10
* Make sure that Rails doesn't resent session_id cookie over and over again if ...Prem Sichanugrist2010-06-251-1/+3
* Avoid deserializing cookies too early, which causes session objects to not be...José Valim2010-06-242-18/+22
* Sessions should not be created until written to and session data should be de...Michael Lovitt2010-06-233-29/+115
* Took out the domain option logic to cookies.rb.Rizwan Reza2010-06-112-20/+0