diff options
author | Rafael França <rafaelmfranca@gmail.com> | 2018-02-28 18:34:00 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-28 18:34:00 -0500 |
commit | c9fa561b2e8dd6bfe31c1850a47e2f17cac94aa6 (patch) | |
tree | 5d21cc59edd9dd6cdad5f756a797e368983e747d /guides/source | |
parent | f008562dd35b0981732a69f1002eadb12850c1b2 (diff) | |
parent | c6d928f3cae28e3b531d3cc4bcde2ddca0323f11 (diff) | |
download | rails-c9fa561b2e8dd6bfe31c1850a47e2f17cac94aa6.tar.gz rails-c9fa561b2e8dd6bfe31c1850a47e2f17cac94aa6.tar.bz2 rails-c9fa561b2e8dd6bfe31c1850a47e2f17cac94aa6.zip |
Merge pull request #32130 from benoittgt/rake-routes-compact-mode
Add "rails routes --expanded" mode
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/routing.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/routing.md b/guides/source/routing.md index 1e75cbf362..98aa841938 100644 --- a/guides/source/routing.md +++ b/guides/source/routing.md @@ -1183,7 +1183,7 @@ $ bin/rails routes -c Comments $ bin/rails routes -c Articles::CommentsController ``` -TIP: You'll find that the output from `rails routes` is much more readable if you widen your terminal window until the output lines don't wrap. +TIP: You'll find that the output from `rails routes` is much more readable if you widen your terminal window until the output lines don't wrap. You can also use --expanded option to turn on the expanded table formatting mode. ### Testing Routes |