aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
Commit message (Expand)AuthorAgeFilesLines
* Update routing.rbHarry V. Kiselev2015-09-201-0/+1
* TypppoAkira Matsuda2015-09-211-3/+3
* Added test for `send_file_headers` called with nil content typeRonak Jangir2015-09-191-1/+12
* mostly remove the ParamsParser middlewareAaron Patterson2015-09-181-1/+0
* remove outdated commentAaron Patterson2015-09-181-4/+0
* all parameter parsing is done through the request object now.Aaron Patterson2015-09-181-1/+1
* let the request object handle parsing XML postsAaron Patterson2015-09-181-2/+9
* remove setting request parameters for JSON requestsAaron Patterson2015-09-181-2/+0
* remove the request parameter from `parse_formatted_parameters`Aaron Patterson2015-09-182-6/+6
* do not instantiate a param parser middlewareAaron Patterson2015-09-182-14/+14
* push the parameter parsers on to the classAaron Patterson2015-09-183-37/+37
* stop eagerly parsing parametersAaron Patterson2015-09-181-2/+0
* only wrap the strategy with exception handlingAaron Patterson2015-09-181-9/+10
* pull `normalize_encode_params` upAaron Patterson2015-09-182-4/+3
* remove the `default` parameter from the parser methodAaron Patterson2015-09-181-8/+5
* move parameter parsing to the request objectAaron Patterson2015-09-182-22/+37
* File encoding is defaulted to utf-8 in Ruby >= 2.1Akira Matsuda2015-09-184-7/+0
* Use rack.session_options instead of directly change envJuanito Fatas2015-09-161-1/+1
* fewer direct env manipulationsAaron Patterson2015-09-152-2/+2
* allocate request objects with the env hash, set routes on the requestAaron Patterson2015-09-152-9/+6
* only "normalize" onceAaron Patterson2015-09-141-1/+1
* create a new renderer instance on calls to `for`Aaron Patterson2015-09-142-55/+49
* eagerly allocate the renderer objectAaron Patterson2015-09-143-9/+10
* initialize `@renderer` to avoid ivar warningsAaron Patterson2015-09-141-1/+8
* add a lock when allocating the rendererAaron Patterson2015-09-141-1/+5
* `rack_response` should use the status it's givenAaron Patterson2015-09-141-1/+1
* Fix HSTS default expire in ActionDispatch::SSL docs.Pedro Nascimento2015-09-141-1/+2
* Merge pull request #21584 from claudiob/remove-hawd-docClaudio B.2015-09-101-3/+2
|\
| * Remove wrong doc line about AC::Parametersclaudiob2015-09-101-3/+2
* | Update documentation to reflect Rack::Session::Abstract changeseileencodes2015-09-091-1/+1
* | Handle Content-Types that are not :json, :xml, or :url_encoded_formeileencodes2015-09-092-2/+30
|/
* ensure that mutating headers will impact the content_type methodAaron Patterson2015-09-081-0/+5
* mime_type will always return a stringAaron Patterson2015-09-081-2/+1
* remove `parse_content_type` parameterAaron Patterson2015-09-081-6/+7
* avoid allocations when there is no content type setAaron Patterson2015-09-081-1/+2
* handle implicit rendering correctlyAaron Patterson2015-09-081-3/+4
* remove mime type lookups when parsing the content typeAaron Patterson2015-09-081-5/+5
* refactor content type settingAaron Patterson2015-09-081-44/+39
* make Content-Type header the canonical location for content-type infoAaron Patterson2015-09-081-34/+50
* pull content type parsing in to a methodAaron Patterson2015-09-081-7/+15
* ensure that content type defaults to text / html when setting charsetAaron Patterson2015-09-081-0/+7
* push content_type assigment in to metalAaron Patterson2015-09-083-9/+11
* avoid useless string allocationsAaron Patterson2015-09-082-2/+1
* use accessors instead of manipulating the hashAaron Patterson2015-09-081-2/+2
* 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