aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_dispatch/routing/route_set.rb
Commit message (Expand)AuthorAgeFilesLines
* pass the route name to define_url_helperAaron Patterson2014-07-171-21/+21
* use a strategy object for generating urls in named helpersAaron Patterson2014-07-171-13/+24
* we do not need to dup the options hash, it is private and a new object each callAaron Patterson2014-07-161-2/+2
* extract inner options before delegating to the helperAaron Patterson2014-07-161-7/+13
* RouteSet should be in charge of constructing the dispatherAaron Patterson2014-07-151-0/+4
* Remove unused param 'separators' from RouteSet#build_pathMindaugas MozĊĞras2014-06-151-2/+2
* pass the parsed path from mapper to the StrexpAaron Patterson2014-05-291-3/+6
* add an alternate constructor to Strexp that takes a stringAaron Patterson2014-05-291-1/+1
* PARAMETERS_KEY is only used in the request, so move the constant thereAaron Patterson2014-05-271-2/+0
* move path_parameter encoding check to the request objectAaron Patterson2014-05-271-10/+1
* dispatcher doesn't need `call` anymoreAaron Patterson2014-05-271-4/+0
* give all endpoints a superclassAaron Patterson2014-05-271-3/+10
* pass a request to `matches?` so we can avoid creating excess requestsAaron Patterson2014-05-251-1/+1
* push is_a?(Dispatcher) check in to one placeAaron Patterson2014-05-241-5/+3
* Always construct route objects with Constraint objectsAaron Patterson2014-05-241-1/+1
* unwrap the constraints object on initialization, eliminate loopsAaron Patterson2014-05-241-1/+1
* glob_param is never used, so rmAaron Patterson2014-05-231-8/+2
* decouple the router object from the request classAaron Patterson2014-05-231-2/+1
* pass the correct custom request to the recognize methodAaron Patterson2014-05-231-1/+1
* pull request allocation up one frameAaron Patterson2014-05-231-1/+3
* stop using PARAMETERS_KEY, and use the accessor on the request objectAaron Patterson2014-05-221-1/+0
* use symbol keys for path_parametersAaron Patterson2014-05-221-2/+2
* middle variable is never used, so rmAaron Patterson2014-05-211-1/+1
* remove dead code. @klass isn't used anymoreAaron Patterson2014-05-211-1/+0
* reuse path formatter from the non-optimized path.Aaron Patterson2014-05-211-6/+1
* reduce object allocationsAaron Patterson2014-05-211-2/+4
* we don't use this parameter for anything, so rmAaron Patterson2014-05-201-1/+1
* fewer hash allocations when calling url_forAaron Patterson2014-05-201-9/+12
* fix variable names, only pass hashes to the positional args methodAaron Patterson2014-05-201-8/+10
* 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