aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_dispatch/routing/mapper.rb
Commit message (Expand)AuthorAgeFilesLines
* Fix marking of custom routes for JourneyAndrew White2016-01-201-14/+20
* Revert "Remove literal? check to fix issue with prefixed optionals"eileencodes2016-01-201-1/+1
* Remove literal? check to fix issue with prefixed optionalseileencodes2016-01-161-1/+1
* Kept overridden root method and removed original methodPrathamesh Sonpatki2016-01-071-21/+21
* Merge pull request #22373 from yui-knk/ad_constraintsYves Senn2015-11-301-1/+1
|\
| * Add `Routing` namespace to point appropriate constantyui-knk2015-11-221-1/+1
* | Brush up errors of `ActionDispatch::Routing::Mapper#mount`yui-knk2015-11-281-6/+9
|/
* Delete needless `require 'active_support/deprecation'`yui-knk2015-10-201-1/+0
* Allow multiple `root` routes in same scope levelRafael Sales2015-10-101-2/+3
* Fix mounted engine named routes regressionMatthew Erhard2015-10-071-0/+1
* [ci skip] Change 'an URL' to 'a URL' as URL doesn't have a vowel soundtanmay30112015-10-061-1/+1
* Remove not used requiresMarcin Olichwirowicz2015-09-011-3/+1
* always dispatch to controllers the same wayAaron Patterson2015-08-251-5/+9
* pull up dispatcher allocationAaron Patterson2015-08-241-1/+1
* set route precedence at allocation timeAaron Patterson2015-08-201-2/+2
* don't touch internalsAaron Patterson2015-08-181-1/+1
* drop array allocations when building pathsAaron Patterson2015-08-181-8/+6
* use the strategy pattern to match request verbsAaron Patterson2015-08-171-10/+1
* switch Route constructors and pass in the regexpAaron Patterson2015-08-171-9/+15
* introduce an alternate constructor for Route objectsAaron Patterson2015-08-171-1/+1
* default pattern to use a joined stringAaron Patterson2015-08-171-1/+3
* move route allocation to a factory method on the mapping objectAaron Patterson2015-08-151-0/+12
* only process `via` onceAaron Patterson2015-08-151-5/+3
* pass pass the mapping object down the add_route stackAaron Patterson2015-08-141-6/+59
* pass the mapping object to build_routeAaron Patterson2015-08-141-5/+5
* 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-141-1/+16
* 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-141-2/+1
* pull up path parsingAaron Patterson2015-08-141-10/+6
* stop adding path_info to the conditions hashAaron Patterson2015-08-141-1/+0
* pull up path normalization.Aaron Patterson2015-08-141-18/+18
* pull up options_constrants extractionAaron Patterson2015-08-131-16/+15
* remove `as`Aaron Patterson2015-08-131-8/+7
* remove anchor from mappingAaron Patterson2015-08-131-8/+7
* pull `anchor` extraction upAaron Patterson2015-08-131-17/+16
* raise if `anchor` is passed to `scope`Aaron Patterson2015-08-131-0/+4
* remove the `add_request_method` methodAaron Patterson2015-08-121-7/+3
* remove side effects in `normalize_defaults`Aaron Patterson2015-08-121-8/+3
* remove unnecessary deletesAaron Patterson2015-08-121-4/+0
* pull `format` out of the options hashAaron Patterson2015-08-121-11/+10
* pull `formatted` up the stackAaron Patterson2015-08-121-14/+13
* store `via` outside the options hashAaron Patterson2015-08-121-3/+6
* don't mutate the caller's variablesAaron Patterson2015-08-121-14/+15
* store `:only` and `:except` outside the normal options hashAaron Patterson2015-08-121-9/+8
* add a method to `Scope` for getting mapping optionsAaron Patterson2015-08-121-2/+8
* pull via checking up to via extractionAaron Patterson2015-08-121-11/+15