aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
Commit message (Expand)AuthorAgeFilesLines
...
* | | 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
* | | | only process `via` onceAaron Patterson2015-08-151-5/+3
|/ / /
* | | Refactor how assign_parameters sets generated_path & query_string_keyseileencodes2015-08-151-8/+20
* | | Initialize symbols instead of mapping to_sym on the set of stringsMarcin Olichwirowicz2015-08-151-2/+2
* | | only keep one hash of named routesAaron Patterson2015-08-145-19/+18
* | | rm add_route2Aaron Patterson2015-08-144-49/+53
* | | pass pass the mapping object down the add_route stackAaron Patterson2015-08-144-56/+73
* | | pass the mapping object to build_routeAaron Patterson2015-08-143-26/+15
* | | remove `process_path`Aaron Patterson2015-08-141-6/+2
* | | explicitly return nil from `get_to_from_path`Aaron Patterson2015-08-141-3/+3
* | | extract method on determining :to from the pathAaron Patterson2015-08-141-5/+9
* | | deprecate passing a string for both the beginning path and :path optionAaron Patterson2015-08-142-2/+20
* | | rm path_params methodAaron Patterson2015-08-141-5/+1
* | | extract method on wildcard path parameter handlingAaron Patterson2015-08-141-6/+11
* | | pass the path ast downAaron Patterson2015-08-143-6/+4
* | | pull up path parsingAaron Patterson2015-08-143-11/+12
* | | use predicate methods instead of hard coding verb stringsAaron Patterson2015-08-143-7/+7
* | | remove hard coded regular expressionAaron Patterson2015-08-142-1/+5
* | | implement `requirements` in terms of routesAaron Patterson2015-08-141-1/+1
* | | implement the `asts` method in terms of paths / patternsAaron Patterson2015-08-141-12/+11
* | | extract ast finding to a methodAaron Patterson2015-08-141-9/+13
* | | stop adding path_info to the conditions hashAaron Patterson2015-08-143-11/+9
* | | pull up path normalization.Aaron Patterson2015-08-141-18/+18
* | | `build_path` doesn't need the path variable anymoreAaron Patterson2015-08-131-2/+2
* | | remove StrexpAaron Patterson2015-08-138-115/+73
* | | pass anchor directly to `Pattern`Aaron Patterson2015-08-137-50/+47
* | | we already have access to the AST, so just use itAaron Patterson2015-08-131-3/+3
* | | remove default arguments that aren't usedAaron Patterson2015-08-131-1/+1
* | | pull up options_constrants extractionAaron Patterson2015-08-132-17/+16
* | | remove `as`Aaron Patterson2015-08-132-9/+8
* | | remove anchor from mappingAaron Patterson2015-08-132-9/+8
* | | pull `anchor` extraction upAaron Patterson2015-08-132-18/+17
* | | raise if `anchor` is passed to `scope`Aaron Patterson2015-08-132-0/+13
* | | remove the `add_request_method` methodAaron Patterson2015-08-121-7/+3
* | | remove side effects in `normalize_defaults`Aaron Patterson2015-08-121-8/+3