aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_dispatch/routing/route_set.rb
Commit message (Expand)AuthorAgeFilesLines
* Only path requirements are relevant to optimized urlsAndrew White2014-05-151-1/+1
* Add missing requires for require 'action_dispatch/routing'Andrew White2014-05-151-0/+2
* _recall should be set to a hash or not setAaron Patterson2014-05-131-2/+2
* we never call url_for with a block, so rmAaron Patterson2014-05-131-1/+0
* drop || test for cases that do not need itAaron Patterson2014-05-131-3/+3
* no need to check for presence, script names can be blankAaron Patterson2014-05-131-2/+2
* this method should always have a parameter passed to it, so remove the defaultAaron Patterson2014-05-131-1/+1
* options should always be passed to url_forAaron Patterson2014-05-131-2/+2
* calls with :host should still use the optimized pathAaron Patterson2014-05-131-2/+2
* use fewer method calls to determine the url_for optionsAaron Patterson2014-05-131-5/+4
* just merge instead of dup and mergeAaron Patterson2014-05-131-2/+1
* the :only_path option is applied by the time the helper is calledAaron Patterson2014-05-131-4/+1
* options already have symbolized keys, so we can avoid this callAaron Patterson2014-05-131-1/+1
* Get rid of unused methodCarlos Antonio da Silva2014-05-131-11/+0
* avoid array allocation when extracting usernames and passwordsAaron Patterson2014-05-121-1/+7
* Revert "reduce conditionals in url_for"Aaron Patterson2014-05-121-6/+3
* 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