aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_dispatch/routing/route_set.rb
Commit message (Expand)AuthorAgeFilesLines
* 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
* | Revert "Clear url helpers when reloading routes"Andrew White2012-12-141-1/+0
|/
* Clear url helpers when reloading routesSantiago Pastorino2012-11-021-0/+1
* 1.9 hash syntax changes to docsAvnerCohen2012-10-311-6/+6
* Use internal instance variable naming scheme for mounted URL helper proxiesSam Pohlenz2012-09-091-1/+1
* refactor route_set `generate_extras` functionalityschneems2012-08-281-17/+9
* Add Missing Keys from Journey on failed URL formatschneems2012-08-281-4/+4
* Further refactor build_conditions in route setCarlos Antonio da Silva2012-08-101-5/+3
* Fix handling SCRIPT_NAME from within mounted engine'sPiotr Sarnacki2012-08-111-5/+12
* RouteSet: refactor internalsBogdan Gusiev2012-08-101-10/+7
* RouteSet: cleanup some unneeded compexityBogdan Gusiev2012-08-041-16/+7
* Renamed _path_segments to _recallBogdan Gusiev2012-08-041-2/+2
* Simplify logical statementBogdan Gusiev2012-08-041-4/+2
* load active_support/core_ext/object/blank in active_support/railsXavier Noria2012-08-021-1/+0
* Fix class_eval without __FILE__ and __LINE__.kennyj2012-07-181-1/+1
* Revert "Allow loading external route files from the router"José Valim2012-06-291-2/+0
* Simplify logic to initialize valid conditions in RouteSetCarlos Antonio da Silva2012-05-311-7/+3
* Merge pull request #2549 from trek/RoutingErrorForMissingControllersAaron Patterson2012-05-211-3/+7
|\