aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/plugins.md
diff options
context:
space:
mode:
authorDavid Elliott <david@gophilosophie.com>2014-09-28 07:12:46 -0700
committerDavid Elliott <david@gophilosophie.com>2014-09-28 09:20:32 -0700
commit21ba9b11f991961cce2e55fdc8f95de97d751ad3 (patch)
tree4932f202664b331845e4bdfa1c7ce6ca924ea6b9 /guides/source/plugins.md
parent3a9b3ba082d50498751f6c144ef31dbefd7f0357 (diff)
downloadrails-21ba9b11f991961cce2e55fdc8f95de97d751ad3.tar.gz
rails-21ba9b11f991961cce2e55fdc8f95de97d751ad3.tar.bz2
rails-21ba9b11f991961cce2e55fdc8f95de97d751ad3.zip
technical correction in guides under 'Generating an engine'
`bin/rails` would not exist outside of a rails project
Diffstat (limited to 'guides/source/plugins.md')
-rw-r--r--guides/source/plugins.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/plugins.md b/guides/source/plugins.md
index dbccfd4021..7b7eb80081 100644
--- a/guides/source/plugins.md
+++ b/guides/source/plugins.md
@@ -39,13 +39,13 @@ to run integration tests using a dummy Rails application. Create your
plugin with the command:
```bash
-$ bin/rails plugin new yaffle
+$ rails plugin new yaffle
```
See usage and options by asking for help:
```bash
-$ bin/rails plugin new --help
+$ rails plugin new --help
```
Testing Your Newly Generated Plugin