aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_dispatch
Commit message (Expand)AuthorAgeFilesLines
...
* | | | pull up dispatcher allocationAaron Patterson2015-08-242-5/+1
* | | | directly ask the request for the controller classAaron Patterson2015-08-241-6/+1
* | | | remove useless ivarAaron Patterson2015-08-241-2/+1
* | | | remove setter for the dispatcher classAaron Patterson2015-08-241-2/+2
* | | | use a custom request class to determine the controller classAaron Patterson2015-08-241-2/+7
* | | | Merge pull request #21339 from deepj/unused-block-argumentsCarlos Antonio da Silva2015-08-241-2/+2
|\ \ \ \
| * | | | Remove unused block argumentsdeepj2015-08-231-2/+2
* | | | | 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-225-46/+50
* | | | move more `@env` access to method callsAaron Patterson2015-08-221-16/+16
* | | | move ORIGINAL_SCRIPT_NAME to the metaprogrammed methodsAaron Patterson2015-08-221-4/+1
* | | | metaprogram the HTTP_X_REQUEST_ID methodAaron Patterson2015-08-221-6/+1
* | | | use `body_stream` instead of getting the env value ourselvesAaron Patterson2015-08-221-1/+1
* | | | convert `@env` use to get / set headerAaron Patterson2015-08-221-16/+16
* | | | use get / set header to avoid depending on the `env` ivarAaron Patterson2015-08-221-11/+14
* | | | Fix Railties test failure for asset routeseileencodes2015-08-221-1/+5
* | | | Refactor to remove controller class from route to requesteileencodes2015-08-222-40/+20
* | | | set cached values in the env hashAaron Patterson2015-08-211-6/+9
* | | | stop directly accessing `@env` in mime_negotiationAaron Patterson2015-08-211-8/+8
* | | | use public API to fetch the parameter filterAaron Patterson2015-08-211-2/+2
* | | | use methods on the request object to implement `fetch`Aaron Patterson2015-08-211-2/+8
* | | | dup the env hash on Header#envAaron Patterson2015-08-211-1/+1
* | | | use accessors on the request object for manipulating envAaron Patterson2015-08-211-3/+3
* | | | use `set_header` rather than []=Aaron Patterson2015-08-211-1/+1
* | | | dup the request and mutate its headers object.Aaron Patterson2015-08-211-2/+2
* | | | Remove unnecessary cachingeileencodes2015-08-211-5/+1
* | | | pass a request object to the headers objectAaron Patterson2015-08-213-12/+18
* | | | set route precedence at allocation timeAaron Patterson2015-08-202-8/+6
* | | | point at rack masterAaron Patterson2015-08-201-2/+2
* | | | make the routes reader privateAaron Patterson2015-08-181-0/+1
* | | | don't touch internalsAaron Patterson2015-08-181-1/+1
* | | | drop array allocations when building pathsAaron Patterson2015-08-182-8/+8
* | | | drop string allocations for each resourceAaron Patterson2015-08-181-0/+2
* | | | Remove unreached default valueRafael Mendonça França2015-08-171-1/+1
* | | | use the strategy pattern to match request verbsAaron Patterson2015-08-172-16/+49
* | | | switch Route constructors and pass in the regexpAaron Patterson2015-08-171-9/+15
* | | | split the verb regex from the constraints hashAaron Patterson2015-08-171-6/+17
* | | | introduce an alternate constructor for Route objectsAaron Patterson2015-08-172-1/+5
* | | | drop object allocation during routes setupAaron Patterson2015-08-172-44/+89
* | | | avoid is_a? checksAaron Patterson2015-08-172-2/+4
* | | | pull RegexpOffsets in to a methodAaron Patterson2015-08-171-27/+14
* | | | `required_defaults` is always passed in, remove conditionalAaron Patterson2015-08-171-1/+1
* | | | use predicate methods to avoid is_a? checksAaron Patterson2015-08-172-1/+3
* | | | default pattern to use a joined stringAaron Patterson2015-08-172-3/+5
* | | | Merge pull request #21252 from rodzyn/improve_params_parserRafael Mendonça França2015-08-171-2/+11
|\ \ \ \
| * | | | Cleanup ActionDispatch:ParamsParserMarcin Olichwirowicz2015-08-171-2/+11