aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_dispatch/routing/route_set.rb
Commit message (Expand)AuthorAgeFilesLines
* reduce conditionals in url_forAaron Patterson2014-05-121-3/+6
* make the module version quack the same as the instanceAaron Patterson2014-05-121-3/+10
* Hash#except is expensive and this is a hotspot, so use a dup + deleteAaron Patterson2014-05-121-1/+2
* Make URL escaping more consistentAndrew White2014-04-201-2/+2
* Unique the segment keys array for non-optimized url helpersAndrew White2014-01-051-1/+1
* Show full route constraints in error messageAndrew White2014-01-051-2/+3
* Simplify arg parameterizationAndrew White2014-01-051-6/+1
* Use a custom route vistor for optimized route generationAndrew White2014-01-051-27/+25
* Spelling and Grammar checksAkshay Vishnoi2013-12-121-1/+1
* Merge pull request #12216 from suginoy/a-anRafael Mendonça França2013-09-131-1/+1
|\
| * Fix typos: the indefinite articles(a -> an)SUGINO Yasuhiro2013-09-131-1/+1
* | Refactor handling of action normalizationMax Shytikov2013-09-101-11/+13
|/
* Revert "Merge branch 'master' of github.com:rails/docrails"Vijay Dev2013-08-171-13/+11
* Refactor handling of action normalizationMax Shytikov2013-07-261-11/+13
* Refactor to reduce number of loopsAndrew White2013-07-171-15/+25
* Fix failing test missed for the past year :(Andrew White2013-07-171-2/+17
* Fix named routing regression from 3.2.13schneems2013-05-161-0/+1
* Duplicate options before mutating themAndrew White2013-04-181-3/+4
* Mark unused variables and make some style fixesAgis Anastasopoulos2013-04-081-1/+1
* fix wrong argument error messageVipul A M2013-03-311-1/+1
* Tweak exception message to avoid giving potentially misleading suggestionsTrevor Turk2013-03-201-2/+3
* Raise an ArgumentError when a clashing named route is definedTrevor Turk2013-03-191-1/+8
* Use custom visitor class for optimized url helpersAndrew White2013-03-031-9/+1
* allow non-String default params in the router.Yves Senn2013-02-261-0/+2
* Missing or unneeded require extract_optionsAkira Matsuda2013-02-011-0/+1
* remove dead codeAaron Patterson2013-01-301-4/+1
* change parameter name for positional argsAaron Patterson2013-01-301-2/+1
* nodoc the helper classes, cache stuff for optimized helperAaron Patterson2013-01-301-13/+17
* cache path parts in the instanceAaron Patterson2013-01-301-2/+3
* stop evaling a string every timeAaron Patterson2013-01-301-4/+4
* moving helper classes outside the private blockAaron Patterson2013-01-301-90/+88
* pushing specialization down to the optimized classAaron Patterson2013-01-301-23/+25
* use polymorphism to remove conditionalAaron Patterson2013-01-301-35/+27
* move conditionals to instanceAaron Patterson2013-01-301-6/+16
* pull stuff out of the caller and hide in the instanceAaron Patterson2013-01-301-4/+3
* moving more stuff on to the instanceAaron Patterson2013-01-301-18/+18
* move optimize_helper? to the helper instanceAaron Patterson2013-01-301-9/+12
* moving more stuff to the instanceAaron Patterson2013-01-301-6/+6
* moving some stuff to the initializerAaron Patterson2013-01-301-14/+38
* moved more evald codeAaron Patterson2013-01-301-8/+7
* factored out some of the dynamic codeAaron Patterson2013-01-301-19/+31
* use the helpers list rather than getting the methods from the moduleAaron Patterson2013-01-241-1/+1
* module_eval is not necessary hereAaron Patterson2013-01-241-3/+1
* don't need to eval everythingAaron Patterson2013-01-241-1/+1
* Change the behavior of route defaultsAndrew White2013-01-151-1/+1
* Raise correct exception now Journey is integrated.Andrew White2013-01-151-4/+2
* Integrate Journey into Action DispatchAndrew White2012-12-191-1/+1
* Merge pull request #8510 from thedarkone/thread_safety_improvementsAaron Patterson2012-12-141-8/+4
|\
| * Replace some global Hash usages with the new thread safe cache.thedarkone2012-12-141-8/+4
* | Clear url helper methods when routes are reloadedAndrew White2012-12-141-0/+6