Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [Action Pack] require => require_relative | Akira Matsuda | 2017-10-21 | 1 | -1/+1 |
| | | | | | This basically reverts e9fca7668b9eba82bcc832cb0061459703368397, d08da958b9ae17d4bbe4c9d7db497ece2450db5f, d1fe1dcf8ab1c0210a37c2a78c1ee52cf199a66d, and 68eaf7b4d5f2bb56d939f71c5ece2d61cf6680a3 | ||||
* | [Action Dispatch] require => require_relative | Akira Matsuda | 2017-07-01 | 1 | -1/+1 |
| | |||||
* | Correct spelling | Benjamin Fleischer | 2017-02-05 | 1 | -1/+1 |
| | | | | | | | ``` go get -u github.com/client9/misspell/cmd/misspell misspell -w -error -source=text . ``` | ||||
* | Shave a couple of allocations off Journey scan & parse | Matthew Draper | 2016-12-25 | 1 | -187/+188 |
| | |||||
* | Remove all Journey constant from public API | Rafael Mendonça França | 2016-10-26 | 1 | -0/+2 |
| | | | | | | There were never public API only there by mistake. [ci skip] | ||||
* | Fix broken comments indentation caused by rubocop auto-correct [ci skip] | Ryuta Kamizono | 2016-09-14 | 1 | -11/+11 |
| | | | | | | All indentation was normalized by rubocop auto-correct at 80e66cc4d90bf8c15d1a5f6e3152e90147f00772. But comments was still kept absolute position. This commit aligns comments with method definitions for consistency. | ||||
* | revises more Lint/EndAlignment offenses | Xavier Noria | 2016-08-08 | 1 | -2/+2 |
| | |||||
* | Add `Style/EmptyLines` in `.rubocop.yml` and remove extra empty lines | Ryuta Kamizono | 2016-08-07 | 1 | -1/+0 |
| | |||||
* | applies remaining conventions across the project | Xavier Noria | 2016-08-06 | 1 | -1/+0 |
| | |||||
* | normalizes indentation and whitespace across the project | Xavier Noria | 2016-08-06 | 1 | -148/+148 |
| | |||||
* | applies new string literal convention in actionpack/lib | Xavier Noria | 2016-08-06 | 1 | -3/+3 |
| | | | | | The current code base is not uniform. After some discussion, we have chosen to go with double quotes by default. | ||||
* | Using no_result_var in Journey's parser generator | Jack Danger Canty | 2014-08-03 | 1 | -32/+22 |
| | | | | | | | | | | | Previously the generated parser had an intermediate local variable `result` that really useful if you're building up a stateful object but Journey always discards the result argument to the reduce functions. This produces a simpler parser for anybody who actually wants to read the thing. Sadly, there's no real performance speedup with this change. | ||||
* | make the AST go from left to right, rather than right to left | Aaron Patterson | 2014-05-19 | 1 | -43/+45 |
| | |||||
* | Spelling and Grammar checks | Akshay Vishnoi | 2013-12-12 | 1 | -1/+1 |
| | |||||
* | :nodoc: Journey because is not part of the public API [ci skip] | Francesco Rodriguez | 2012-12-19 | 1 | -2/+2 |
| | |||||
* | Integrate Journey into Action Dispatch | Andrew White | 2012-12-19 | 1 | -0/+206 |
Move the Journey code underneath the ActionDispatch namespace so that we don't pollute the global namespace with names that may be used for models. Fixes rails/journey#49. |