Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Transform dashes to underscores in resource route names | Byron Bischoff | 2014-01-25 | 1 | -3/+13 |
| | | | | Fixes #13824 | ||||
* | Fix `rake routes` error when `Rails::Engine` with empty routes is mounted; ↵ | Maurizio De Santis | 2014-01-24 | 1 | -0/+21 |
| | | | | | | fixes rails/rails#13810 Squash | ||||
* | Tidy up tests and CHANGELOG for #12598 | Andrew White | 2014-01-20 | 1 | -3/+14 |
| | |||||
* | Automatically convert dashes to underscores for url helpers | Amr Tamimi | 2014-01-20 | 1 | -1/+3 |
| | |||||
* | Show routes defined under assets prefix | Ryunosuke SATO | 2013-12-19 | 1 | -0/+12 |
| | | | | Closes #9625 | ||||
* | Build fix for Routing Inspector | Arun Agrawal | 2013-11-22 | 1 | -2/+2 |
| | | | | | | Broken by 6701b4cf41f6f3d9cfc6a93715acbf852d1e468e | ||||
* | Fix for routes task | Sıtkı Bağdat | 2013-11-21 | 1 | -16/+16 |
| | | | | This commit fixes formatting issue for `rake routes` task, when a section is shorter than a header. | ||||
* | `RoutesInspector` deals with routes using regexp as `:controller` option | Yves Senn | 2013-05-30 | 1 | -0/+9 |
| | |||||
* | Fix AP tests related to routes inspector output and the new column titles | Carlos Antonio da Silva | 2013-02-19 | 1 | -20/+65 |
| | |||||
* | In Browser Path Matching with Javascript | schneems | 2013-01-20 | 1 | -0/+8 |
| | | | | | | | | | | | When debugging routes ,it can sometimes be difficult to understand exactly how the paths are matched. This PR adds a JS based path matching widget to the `/rails/info/routes` output. You can enter in a path, and it will tell you which of the routes that path matches, while preserving order (top match wins). The matching widget in action: ![](http://f.cl.ly/items/3A2F0v2m3m1Z1p3P3O3k/path-match.gif) Prior to this PR the only way to check matching paths is via mental math, or typing in a path in the url bar and seeing where it goes. This feature will be an invaluable debugging tool by dramatically decreasing the time needed to check a path match. ATP actionpack | ||||
* | Needless requires | Akira Matsuda | 2013-01-06 | 1 | -2/+0 |
| | |||||
* | Missing requires | Akira Matsuda | 2013-01-06 | 1 | -0/+1 |
| | |||||
* | split formatting concerns from RoutesInspector | Yves Senn | 2013-01-05 | 1 | -4/+21 |
| | |||||
* | Add active_support/testing/autorun | Rafael Mendonça França | 2012-12-31 | 1 | -1/+1 |
| | | | | | minitest/autorun load minitest/spec polluting the global namespace with the DSL that we don't want on Rails | ||||
* | fixing most tests on Ruby 2.0 | Aaron Patterson | 2012-09-25 | 1 | -2/+2 |
| | |||||
* | Rename RouteInspector to RoutesInspector | Carlos Antonio da Silva | 2012-07-08 | 1 | -2/+2 |
| | | | | Follow the consistency defined in dbc43bc. | ||||
* | move route_inspector to actionpack | @schneems and @mattt | 2012-07-07 | 1 | -0/+170 |
this is so we can show route output in the development when we get a routing error. Railties can use features of ActionDispatch, but ActionDispatch should not depend on Railties. |