diff options
author | Mattias Wadman <mattias.wadman@gmail.com> | 2011-07-01 07:58:04 -0700 |
---|---|---|
committer | Mattias Wadman <mattias.wadman@gmail.com> | 2011-07-01 07:58:04 -0700 |
commit | dfabd909c6f44cba4125907a56482d8b331b518c (patch) | |
tree | 9755536b82f129648f91a1d1fe0ac86ab581f56a /railties/guides | |
parent | 7896ac35c06be7ccc3372ec0db638b54c963f842 (diff) | |
download | rails-dfabd909c6f44cba4125907a56482d8b331b518c.tar.gz rails-dfabd909c6f44cba4125907a56482d8b331b518c.tar.bz2 rails-dfabd909c6f44cba4125907a56482d8b331b518c.zip |
Fix arguments to get plugin help. Otherwise a plugin named "new" is created.
Diffstat (limited to 'railties/guides')
-rw-r--r-- | railties/guides/source/plugins.textile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/guides/source/plugins.textile b/railties/guides/source/plugins.textile index 2eb71e49c4..79bbe495bd 100644 --- a/railties/guides/source/plugins.textile +++ b/railties/guides/source/plugins.textile @@ -37,7 +37,7 @@ Use the +rails generate plugin+ command in your Rails root directory directory. See usage and options by asking for help: <shell> -$ rails generate plugin new --help +$ rails generate plugin --help </shell> h4. Or generate a gemified plugin. |