aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_dispatch/routing/route_set.rb
Commit message (Expand)AuthorAgeFilesLines
* Remove arity check for `RouteSet#draw`yui-knk2015-11-211-4/+0
* remove unnecessary forwardable requireTimo Schilling2015-10-211-1/+0
* Fix mounted engine named routes regressionMatthew Erhard2015-10-071-2/+6
* 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-251-2/+16
* always return a controller class from the `controller_class` methodAaron Patterson2015-08-251-3/+1
* pull up dispatcher allocationAaron Patterson2015-08-241-4/+0
* 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
* make the routes reader privateAaron Patterson2015-08-181-0/+1
* 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-141-47/+1
* pass the mapping object to build_routeAaron Patterson2015-08-141-5/+5
* pass the path ast downAaron Patterson2015-08-141-3/+2
* stop adding path_info to the conditions hashAaron Patterson2015-08-141-1/+0
* `build_path` doesn't need the path variable anymoreAaron Patterson2015-08-131-2/+2
* remove StrexpAaron Patterson2015-08-131-7/+1
* pass anchor directly to `Pattern`Aaron Patterson2015-08-131-3/+2
* 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
* Remove wrong commentRafael Mendonça França2015-08-091-1/+0
* Remove the conditional since it is done in the methodRafael Mendonça França2015-08-091-4/+4
* Execute the block when the controller doesn't existRafael Mendonça França2015-08-091-0/+1
* stop calling `scope` internallyAaron Patterson2015-08-081-6/+1
* remove useless conditionalAaron Patterson2015-08-081-1/+1
* eliminate assignment in conditionalAaron Patterson2015-08-081-1/+3
* Remove `defaults` hash from `Dispatcher`Aaron Patterson2015-08-081-7/+7
* Merge pull request #21167 from AaronLasseigne/use_each_keyKasper Timm Hansen2015-08-081-1/+1
|\
| * replace each with each_key when only the key is neededAaron Lasseigne2015-08-081-1/+1
* | Allow a custom dispatcher to be provided to routing.Xavier Shay2015-08-071-2/+3
* | Move `controller_reference` and `controller_class_names` to protectedXavier Shay2015-08-071-2/+6
* | the request class is never changed, so just use it directly in the method bodyAaron Patterson2015-08-071-3/+3
|/
* Merge pull request #21061 from yui-knk/refactor/route_setRafael Mendonça França2015-08-061-4/+2
|\
| * Remove duplicated `Array#to_param`yui-knk2015-08-011-4/+2
* | Use #start_with? and #[] for speedBenjamin Quorning2015-08-021-2/+2
* | Avoid hash duplication by skipping mutationschneems2015-07-301-2/+2
* | Only allocate new string when neededschneems2015-07-301-1/+7
* | Freeze a string in comparatorschneems2015-07-301-1/+1
* | Reduce hash allocations in route_setschneems2015-07-291-1/+1
* | Decrease route_set allocationsschneems2015-07-291-3/+7
|/
* Freeze string literals when not mutated.schneems2015-07-191-1/+1
* Routes resources avoid :new and :edit endpoints if api_only is enabledJorge Bejar2015-06-111-6/+16