aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
Commit message (Expand)AuthorAgeFilesLines
...
* | | | | remove usage of `@env`Aaron Patterson2015-08-231-3/+5
| |_|_|/ |/| | |
* | | | Another place to use a request object in NullSessionHash Ronak Jangir2015-08-231-3/+3
| |/ / |/| |
* | | use a request object in the session middlewareAaron Patterson2015-08-227-68/+74
* | | 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-223-41/+21
* | | 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-214-13/+19
* | move header allocation to a helper methodAaron Patterson2015-08-211-5/+9
* | Merge pull request #21106 from amitsuroliya/fix_routing_testAndrew White2015-08-211-6/+0
|\ \
| * | Remove duplicity in testsamitkumarsuroliya2015-08-031-6/+0
* | | set route precedence at allocation timeAaron Patterson2015-08-202-8/+6
* | | point at rack masterAaron Patterson2015-08-203-4/+4
* | | make the routes reader privateAaron Patterson2015-08-182-1/+2
* | | don't touch internalsAaron Patterson2015-08-181-1/+1
* | | drop array allocations when building pathsAaron Patterson2015-08-182-8/+8
* | | symbols will always be constructed with strings. :bomb:Aaron Patterson2015-08-181-1/+1
* | | 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
* | | test the verb method on the route, specificallyAaron Patterson2015-08-171-1/+1
* | | routes are always constructed with a hash for the conditionsAaron Patterson2015-08-173-4/+4
* | | introduce an alternate constructor for Route objectsAaron Patterson2015-08-173-13/+17
* | | 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
* | | Fix master buildMarcin Olichwirowicz2015-08-171-0/+1
* | | use predicate methods to avoid is_a? checksAaron Patterson2015-08-172-1/+3
* | | default pattern to use a joined stringAaron Patterson2015-08-174-16/+20
* | | 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
* | | | [skip ci] Fix minor typoJon Atack2015-08-171-1/+1
* | | | move route allocation to a factory method on the mapping objectAaron Patterson2015-08-152-8/+13
* | | | use the mapper to build the routing tableAaron Patterson2015-08-152-231/+103