aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_dispatch/journey
Commit message (Expand)AuthorAgeFilesLines
* applies new string literal convention in actionpack/libXavier Noria2016-08-0616-53/+53
* Merge pull request #23103 from rails/refactor-handling-of-action-defaultJeremy Daer2016-04-241-2/+7
|\
| * Refactor handling of :action default in routingAndrew White2016-02-161-2/+7
* | [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
* | Remove unused Journey codeJon Moss2016-02-172-8/+0
|/
* Replace x.times.map{} with Array.new(x){}Viktar Basharymau2016-01-021-1/+1
* Merge pull request #21849 from yui-knk/refactor_regexp_to_stringAndrew White2015-10-121-1/+1
|\
| * Change `Journey::Route#verb` to return string instead of regexp.yui-knk2015-10-031-1/+1
* | used predicate methods to avoid is_a? checksRonak Jangir2015-10-102-3/+5
|/
* File encoding is defaulted to utf-8 in Ruby >= 2.1Akira Matsuda2015-09-182-4/+0
* Fix route creation when format is a blank stringeileencodes2015-09-021-1/+1
* set route precedence at allocation timeAaron Patterson2015-08-201-6/+4
* drop array allocations when building pathsAaron Patterson2015-08-181-0/+2
* drop string allocations for each resourceAaron Patterson2015-08-181-0/+2
* 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
* drop object allocation during routes setupAaron Patterson2015-08-172-44/+89
* avoid is_a? checksAaron Patterson2015-08-172-2/+4
* pull RegexpOffsets in to a methodAaron Patterson2015-08-171-27/+14
* `required_defaults` is always passed in, remove conditionalAaron Patterson2015-08-171-1/+1
* use predicate methods to avoid is_a? checksAaron Patterson2015-08-172-1/+3
* default pattern to use a joined stringAaron Patterson2015-08-171-2/+2
* move route allocation to a factory method on the mapping objectAaron Patterson2015-08-151-8/+1
* only keep one hash of named routesAaron Patterson2015-08-142-5/+2
* rm add_route2Aaron Patterson2015-08-141-7/+1
* pass pass the mapping object down the add_route stackAaron Patterson2015-08-141-2/+12
* pull up path parsingAaron Patterson2015-08-141-0/+4
* use predicate methods instead of hard coding verb stringsAaron Patterson2015-08-141-1/+1
* remove hard coded regular expressionAaron Patterson2015-08-142-1/+5
* remove StrexpAaron Patterson2015-08-133-34/+11
* pass anchor directly to `Pattern`Aaron Patterson2015-08-132-8/+7
* Array#any? is slower and not the inverse of Array#empty?Jean Boussier2015-07-301-2/+2
* Use delete_if instead of each; delete(key)schneems2015-07-301-3/+2
* Remove (another) array allocationschneems2015-07-301-5/+14
* Remove array allocationschneems2015-07-301-2/+2
* Avoid calling to_s on nil in journey/formatterschneems2015-07-301-2/+2
* Speed up journey missing_keysschneems2015-07-291-3/+15
* Speed up journey extract_parameterized_partsschneems2015-07-291-2/+3
* Freeze string literals when not mutated.schneems2015-07-192-4/+4
* Merge pull request #19431 from hmarr/head-routingRafael Mendonça França2015-06-221-1/+2
|\
| * Respect routing precedence for HEAD requestsHarry Marr2015-03-201-1/+2
* | extract required_defaults from the conditions hash before constructing the routeAaron Patterson2015-06-082-6/+5
* | Use block variable instead of globalschneems2015-06-011-1/+1
* | ActionDispatch::Journey::Routes#empty? test casesValentine Valyaeff2015-05-191-1/+1
* | Added ActionDispatch::Journey::Routes#empty?juggernaut-2015-05-181-0/+4
* | Merge pull request #18392 from brainopia/fix_route_requirementsArthur Nogueira Neves2015-04-271-1/+1
|\ \
| * | Correct route requirements by overriding defaultls (fixes #18373)brainopia2015-01-081-1/+1