aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_dispatch/journey/route.rb
Commit message (Expand)AuthorAgeFilesLines
* Optimize Journey::Route#glob?Jean Boussier2019-07-261-1/+1
* Remove Route#build as it wasn't usedAlberto Almagro2019-05-221-7/+1
* Use keyword arguments for ActionDispatch::Journey:Route constructorAlberto Almagro2019-05-221-3/+4
* Keep part when scope option has valueAlberto Almagro2019-05-221-4/+5
* Use frozen string literal in actionpack/Kir Shatrov2017-07-291-0/+2
* Revert "Merge pull request #29540 from kirs/rubocop-frozen-string"Matthew Draper2017-07-021-1/+0
* Enforce frozen string in RubocopKir Shatrov2017-07-011-0/+1
* Pass params __FILE__ and __LINE__ + 1 if class_eval with <<bogdanvlviv2017-05-291-5/+5
* [docs] fix ActionDispatch documentationHrvoje Šimić2017-03-131-1/+8
* Fully initialize routes before the first request is handledJean Boussier2017-01-181-0/+8
* Optimize Journey::Route#scoreBen Hughes2016-12-281-4/+9
* Add more rubocop rules about whitespacesRafael Mendonça França2016-10-291-3/+3
* Remove all Journey constant from public APIRafael Mendonça França2016-10-261-3/+5
* applies remaining conventions across the projectXavier Noria2016-08-061-1/+0
* normalizes indentation and whitespace across the projectXavier Noria2016-08-061-6/+6
* remove redundant curlies from hash argumentsXavier Noria2016-08-061-1/+1
* 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