aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_dispatch/journey/route.rb
Commit message (Expand)AuthorAgeFilesLines
* modernizes hash syntax in actionpackXavier Noria2016-08-061-1/+1
* applies new string literal convention in actionpack/libXavier Noria2016-08-061-2/+2
* [ci skip] Replace usage of rake routes with rails routesAbhishek Jain2016-02-251-1/+1
* Add `internal` attribute to routesJon Moss2016-02-221-2/+3
* Change `Journey::Route#verb` to return string instead of regexp.yui-knk2015-10-031-1/+1
* set route precedence at allocation timeAaron Patterson2015-08-201-6/+4
* Remove unreached default valueRafael Mendonça França2015-08-171-1/+1
* use the strategy pattern to match request verbsAaron Patterson2015-08-171-6/+48
* split the verb regex from the constraints hashAaron Patterson2015-08-171-6/+17
* introduce an alternate constructor for Route objectsAaron Patterson2015-08-171-0/+4
* `required_defaults` is always passed in, remove conditionalAaron Patterson2015-08-171-1/+1
* use predicate methods to avoid is_a? checksAaron Patterson2015-08-171-1/+1
* remove hard coded regular expressionAaron Patterson2015-08-141-0/+4
* extract required_defaults from the conditions hash before constructing the routeAaron Patterson2015-06-081-4/+3
* Correct route requirements by overriding defaultls (fixes #18373)brainopia2015-01-081-1/+1
* remove unused `#optional_parts`Sergey Alekseev2014-12-051-4/+0
* Pass symbol as an argument instead of a blockErik Michaels-Ober2014-11-291-3/+3
* push is_a?(Dispatcher) check in to one placeAaron Patterson2014-05-241-9/+1
* unwrap the constraints object on initialization, eliminate loopsAaron Patterson2014-05-241-1/+1
* reuse path formatter from the non-optimized path.Aaron Patterson2014-05-211-4/+0
* make variable name more clearAaron Patterson2014-05-211-2/+2
* do not mutate parameters, let the caller do mutationsAaron Patterson2014-05-211-4/+0
* push the formatter up to the Route objectAaron Patterson2014-05-211-1/+2
* cache the formatter on the path objectAaron Patterson2014-05-201-2/+1
* translate AST to a formatter before url generationAaron Patterson2014-05-201-1/+2
* Make URL escaping more consistentAndrew White2014-04-201-0/+4
* Skip Rack applications and redirects when generating urlsAndrew White2013-07-161-0/+12
* Passing subdomain: '' to url_for removes the subdomain (instead of adding a l...Derek Watson2013-04-181-0/+4
* Use custom visitor class for optimized url helpersAndrew White2013-03-031-0/+4
* Change the behavior of route defaultsAndrew White2013-01-151-4/+7
* Add support for other types of routing constraintsAndrew White2013-01-151-5/+24
* access `@path` and `@routes` via reader methods in journeyGosha Arinich2013-01-071-1/+1
* Refactor to not call path.ast twiceCarlos Antonio da Silva2013-01-061-2/+3
* refactor Route#ast to use or-equals and block, instead of return with a condGosha Arinich2013-01-061-5/+4
* update AD::Journey to follow Rails coding conventionsFrancesco Rodriguez2012-12-201-4/+4
* :nodoc: Journey because is not part of the public API [ci skip]Francesco Rodriguez2012-12-191-2/+2
* Integrate Journey into Action DispatchAndrew White2012-12-191-0/+94