aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_dispatch/middleware
Commit message (Expand)AuthorAgeFilesLines
* Don't set a nil Set-Cookie header when there aren't any cookies. Omit the hea...Jeremy Daer2015-10-011-1/+3
* inherit from our AbstractStoreAaron Patterson2015-09-251-5/+1
* pull the flash methods in to their own moduleAaron Patterson2015-09-251-34/+38
* commit the flash after the controller finishes being servicedAaron Patterson2015-09-251-10/+16
* move flash committing to the request object.Aaron Patterson2015-09-251-12/+1
* build the Set-Cookie header functionallyAaron Patterson2015-09-241-5/+18
* ask the request object for the sessionAaron Patterson2015-09-221-1/+1
* TypppoAkira Matsuda2015-09-211-3/+3
* do not instantiate a param parser middlewareAaron Patterson2015-09-181-6/+2
* push the parameter parsers on to the classAaron Patterson2015-09-181-12/+2
* stop eagerly parsing parametersAaron Patterson2015-09-181-2/+0
* pull `normalize_encode_params` upAaron Patterson2015-09-181-2/+1
* move parameter parsing to the request objectAaron Patterson2015-09-181-21/+3
* Fix HSTS default expire in ActionDispatch::SSL docs.Pedro Nascimento2015-09-141-1/+2
* Update documentation to reflect Rack::Session::Abstract changeseileencodes2015-09-091-1/+1
* 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
* Make `config.force_ssl` less dangerous to try and easier to disableJeremy Daer2015-09-071-36/+92
* implement abstract store methodsAaron Patterson2015-09-042-5/+5
* stop using deprecated Abstract::ID classAaron Patterson2015-09-042-2/+2
* stop inheriting from Rack::RequestAaron Patterson2015-09-043-4/+4
* use `Rack::Utils.unescape_path` to unescape pathsAaron Patterson2015-09-041-3/+3
* Fix bug where cookies mutated by request were not persistedeileencodes2015-09-011-0/+7
* Remove unused requiresMarcin Olichwirowicz2015-08-251-2/+0
* Make `assert_index` privateMarcin Olichwirowicz2015-08-251-3/+1
* Remove unused block argumentsamitkumarsuroliya2015-08-251-1/+1
* stop using `@env` in the GET / POST methodsAaron Patterson2015-08-241-2/+4
* use methods on the request object instead of accessing envAaron Patterson2015-08-231-7/+7
* use `Request#path_info` instead of direct ENV accessAaron Patterson2015-08-231-1/+1
* remove env access from debug_exceptionsAaron Patterson2015-08-231-10/+9
* convert more `@env` access to get / set headerAaron Patterson2015-08-231-11/+13
* remove usage of `@env`Aaron Patterson2015-08-231-3/+5
* use a request object in the session middlewareAaron Patterson2015-08-223-22/+26
* Cleanup ActionDispatch:ParamsParserMarcin Olichwirowicz2015-08-171-2/+11
* finish deprecating handling strings and symbolsAaron Patterson2015-08-071-19/+4
* Using strings or symbols for middleware class names is deprecated.Aaron Patterson2015-08-071-18/+25
* simplify the Middleware constructorAaron Patterson2015-08-071-10/+13
* use Proc.new to reduce some conditionalsAaron Patterson2015-08-071-3/+1
* refactor param parsing middleware to use request objectsAaron Patterson2015-08-071-10/+9
* move flash hash access to methods on the request objectAaron Patterson2015-08-071-2/+11
* use a request object to access info from env in GetIpAaron Patterson2015-08-061-10/+12
* ask the request if we should show exceptionsAaron Patterson2015-08-062-4/+6