aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_dispatch/journey
Commit message (Expand)AuthorAgeFilesLines
...
* Add docs for Router::Utils.unescape_uri methoddixpac2017-04-301-0/+4
* [docs] fix ActionDispatch documentationHrvoje Šimić2017-03-135-5/+11
* Correct spellingBenjamin Fleischer2017-02-051-1/+1
* Merge pull request #27647 from Shopify/fully-eagerload-journeyRafael França2017-01-303-0/+22
|\
| * Fully initialize routes before the first request is handledJean Boussier2017-01-183-0/+22
* | class Foo < Struct.new(:x) creates an extra unneeded anonymous classAkira Matsuda2017-01-131-1/+1
|/
* Use `next` instead of `break`; avoid terminating whole loopJon Moss2016-12-291-1/+1
* Optimize Journey::Route#scoreBen Hughes2016-12-282-5/+14
* Shave a couple of allocations off Journey scan & parseMatthew Draper2016-12-253-203/+207
* Privatize unneededly protected methods in Action PackAkira Matsuda2016-12-241-3/+3
* Add more rubocop rules about whitespacesRafael Mendonça França2016-10-298-12/+12
* Fix :stopdoc: to :startdoc: [ci skip]Ryuta Kamizono2016-10-281-1/+1
* Remove all Journey constant from public APIRafael Mendonça França2016-10-265-7/+17
* Show an "unmatched constraints" error for mismatching and present paramsChris Carter2016-10-031-1/+5
* Fix broken comments indentation caused by rubocop auto-correct [ci skip]Ryuta Kamizono2016-09-141-11/+11
* Fix broken heredoc indentation caused by rubocop auto-correctRyuta Kamizono2016-09-031-1/+1
* Merge pull request #26156 from sfaxon/route_visualizer_fixRafael França2016-08-161-1/+3
|\
| * fix Rails.application.routes.router.visualizer for router debuggingSeth Faxon2016-08-131-1/+3
* | Add three new rubocop rulesRafael Mendonça França2016-08-163-4/+4
|/
* revises more Lint/EndAlignment offensesXavier Noria2016-08-081-2/+2
* Add `Style/EmptyLines` in `.rubocop.yml` and remove extra empty linesRyuta Kamizono2016-08-071-1/+0
* applies remaining conventions across the projectXavier Noria2016-08-065-6/+4
* normalizes indentation and whitespace across the projectXavier Noria2016-08-064-173/+173
* 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-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