aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/routing.md
diff options
context:
space:
mode:
authorJosef Šimánek <josef.simanek@gmail.com>2014-05-20 13:29:18 +0200
committerJosef Šimánek <josef.simanek@gmail.com>2014-05-20 13:29:18 +0200
commit981dda53dbb0f573e537e107271d2dce76447110 (patch)
treea8993bd4afbc552e1a7de61e99dd5c6d6703b6b2 /guides/source/routing.md
parent8f8dfa488a7c20196d597cab6b9eb4ddaaa597c2 (diff)
downloadrails-981dda53dbb0f573e537e107271d2dce76447110.tar.gz
rails-981dda53dbb0f573e537e107271d2dce76447110.tar.bz2
rails-981dda53dbb0f573e537e107271d2dce76447110.zip
Use generated binstubs in guides examples.
[ci skip]
Diffstat (limited to 'guides/source/routing.md')
-rw-r--r--guides/source/routing.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/routing.md b/guides/source/routing.md
index 9dab946c72..314dbffae2 100644
--- a/guides/source/routing.md
+++ b/guides/source/routing.md
@@ -1072,7 +1072,7 @@ edit_user GET /users/:id/edit(.:format) users#edit
You may restrict the listing to the routes that map to a particular controller setting the `CONTROLLER` environment variable:
```bash
-$ CONTROLLER=users rake routes
+$ CONTROLLER=users bin/rake routes
```
TIP: You'll find that the output from `rake routes` is much more readable if you widen your terminal window until the output lines don't wrap.