aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_dispatch
Commit message (Expand)AuthorAgeFilesLines
* Assume uploaded filename is UTF-8Kohei Suzuki2015-08-051-1/+7
* Use #start_with? and #[] for speedBenjamin Quorning2015-08-021-2/+2
* [ci skip]yui-knk2015-08-011-0/+15
* Array#any? is slower and not the inverse of Array#empty?Jean Boussier2015-07-301-2/+2
* Use delete_if instead of each; delete(key)schneems2015-07-301-3/+2
* Remove (another) array allocationschneems2015-07-301-5/+14
* Remove array allocationschneems2015-07-301-2/+2
* Avoid hash duplication by skipping mutationschneems2015-07-301-2/+2
* Only allocate new string when neededschneems2015-07-301-1/+7
* Freeze a string in comparatorschneems2015-07-301-1/+1
* Avoid calling to_s on nil in journey/formatterschneems2015-07-301-2/+2
* Reduce hash allocations in route_setschneems2015-07-291-1/+1
* Decrease route_set allocationsschneems2015-07-291-3/+7
* Speed up journey missing_keysschneems2015-07-291-3/+15
* Speed up journey extract_parameterized_partsschneems2015-07-291-2/+3
* Tiny documentation edits [ci skip]Robin Dupret2015-07-281-1/+1
* Add `:nodoc:` for internal testing methods [ci skip]Robin Dupret2015-07-281-1/+1
* Merge pull request #20590 from vngrs/set_default_charsetRafael Mendonça França2015-07-271-6/+6
|\
| * Document, refactor and create test case for ActionDispatch::Response#charset=...Mehmet Emin İNAÇ2015-06-171-6/+6
* | rm `deep_munge`. You will live on in our hearts (and git history)Aaron Patterson2015-07-213-26/+15
* | push param encoding in to the utils moduleAaron Patterson2015-07-212-14/+30
* | stop keeping track of keys when "deep munging"Aaron Patterson2015-07-211-5/+3
* | recurse for arrays in `normalize_encode_params`Aaron Patterson2015-07-211-5/+3
* | Merge pull request #20751 from repinel/remove-unnecessary-dupRafael Mendonça França2015-07-201-1/+1
|\ \
| * | Remove unnecessary `dup` from Mapper `add_route`Roque Pinel2015-07-011-1/+1
* | | Freeze string literals when not mutated.schneems2015-07-196-13/+13
* | | Stop using deprecated `render :text` in testPrem Sichanugrist2015-07-171-1/+1
* | | Oops! :bomb:Akira Matsuda2015-07-171-1/+1
* | | "warning: instance variable @routes not initialized"Akira Matsuda2015-07-171-1/+1
* | | Make AC::Parameters not inherited from HashPrem Sichanugrist2015-07-151-0/+4
* | | Rack implements `redirect?` so we don't need itAaron Patterson2015-07-141-3/+0
* | | use a lookup table for `assert_response`Aaron Patterson2015-07-131-3/+8
* | | move buffer caching on to the bufferAaron Patterson2015-07-131-3/+11
* | | Merge pull request #20842 from TheBlasfem/removed_usage_lines_docsClaudio B.2015-07-111-1/+1
|\ \ \
| * | | added description instead of remove usage [ci skip]Julio Lopez2015-07-111-1/+1
* | | | Merge pull request #17102 from matthewd/load-interlockAaron Patterson2015-07-101-0/+21
|\ \ \ \
| * | | | Fix the Interlock middlewareMatthew Draper2015-07-091-5/+14
| * | | | Soften the lock requirements when eager_load is disabledMatthew Draper2015-07-091-0/+12
* | | | | start disconnecting the parameter parser from the instanceAaron Patterson2015-07-101-3/+3
* | | | | drop a conditional by always assigningAaron Patterson2015-07-101-6/+5
| |/ / / |/| | |
* | | | drop runtime conditionals in parameter parsingAaron Patterson2015-07-091-13/+9
* | | | assign the cookie hash on request allocationAaron Patterson2015-07-081-1/+1
* | | | add a new constructor for allocating test requestsAaron Patterson2015-07-082-9/+9
* | | | make `env` a required parameterAaron Patterson2015-07-081-1/+1
* | | | pass the starting env and session to build_requestAaron Patterson2015-07-081-1/+1
* | | | let the superclass build the request and responseAaron Patterson2015-07-081-1/+1
* | | | remove useless `new` implementationAaron Patterson2015-07-081-4/+0
|/ / /
* | | pass cookies from the jar in the HTTP_COOKIE headereileencodes2015-07-071-9/+4
* | | Send cookies with requesteileencodes2015-07-072-1/+5
* | | Merge pull request #13897 from gmalette/nested-parameter-filtering-2Arthur Nogueira Neves2015-07-061-7/+17
|\ \ \