aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_dispatch/routing
Commit message (Expand)AuthorAgeFilesLines
...
* | Add options for rake routes taskVipul A M2016-02-021-15/+19
* | 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
* | Better error message when running `rake routes` with CONTROLLER arg:Edouard CHIN2016-01-071-7/+18
* | Merge pull request #20109 from prathamesh-sonpatki/keep-only-one-rootKasper Timm Hansen2016-01-071-21/+21
|\ \
| * | Kept overridden root method and removed original methodPrathamesh Sonpatki2016-01-071-21/+21
* | | Allow AC::Parameters as an argument to url_helpersPrathamesh Sonpatki2016-01-071-2/+11
* | | Merge pull request #20797 from byroot/prevent-url-for-ac-parametersRafael França2015-12-181-1/+4
|\ \ \
| * | | Prevent ActionController::Parameters from being passed to url_for directlyJean Boussier2015-12-151-1/+4
| |/ /
* / / Don't catch all NameError to reraise as ActionController::RoutingError #22368Maxime Garcia2015-12-121-2/+4
|/ /
* | 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
|/ /
* | Remove arity check for `RouteSet#draw`yui-knk2015-11-211-4/+0
* | remove unnecessary forwardable requireTimo Schilling2015-10-211-1/+0
* | Delete needless `require 'active_support/deprecation'`yui-knk2015-10-201-1/+0
* | Merge pull request #21849 from yui-knk/refactor_regexp_to_stringAndrew White2015-10-121-4/+0
|\ \
| * | Change `Journey::Route#verb` to return string instead of regexp.yui-knk2015-10-031-4/+0
* | | Allow multiple `root` routes in same scope levelRafael Sales2015-10-101-2/+3
* | | Fix mounted engine named routes regressionMatthew Erhard2015-10-072-2/+7
* | | [ci skip] Change 'an URL' to 'a URL' as URL doesn't have a vowel soundtanmay30112015-10-062-2/+2
|/ /
* | `url_for` does not modify polymorphic optionsBernerd Schaefer2015-09-041-1/+2
* | Remove not used requiresMarcin Olichwirowicz2015-09-011-3/+1
* | provide a request and response to all controllersAaron Patterson2015-08-251-4/+6
* | adding a direct dispatch method to controller classesAaron Patterson2015-08-251-1/+1
* | always dispatch to controllers the same wayAaron Patterson2015-08-252-7/+25
* | always return a controller class from the `controller_class` methodAaron Patterson2015-08-251-3/+1
* | 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
* | Remove unused block argumentsdeepj2015-08-231-2/+2
* | Fix Railties test failure for asset routeseileencodes2015-08-221-1/+5
* | Refactor to remove controller class from route to requesteileencodes2015-08-221-40/+8
* | Remove unnecessary cachingeileencodes2015-08-211-5/+1
* | set route precedence at allocation timeAaron 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-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
* | only keep one hash of named routesAaron Patterson2015-08-141-1/+2
* | rm add_route2Aaron Patterson2015-08-141-1/+1
* | pass pass the mapping object down the add_route stackAaron Patterson2015-08-142-53/+60