diff options
author | Ulysse Carion <ulyssecarion@gmail.com> | 2013-10-07 19:26:00 -0700 |
---|---|---|
committer | Ulysse Carion <ulyssecarion@gmail.com> | 2013-10-08 08:14:51 -0700 |
commit | e2de7dc5ba338e1077bc2c4be56a34ce2eb7ea56 (patch) | |
tree | 74fc6b335c6495052bf8daeb4e9daa3b8a6aeb2c | |
parent | d2d6e4a980800cefce4066724ddd541ae22730c1 (diff) | |
download | rails-e2de7dc5ba338e1077bc2c4be56a34ce2eb7ea56.tar.gz rails-e2de7dc5ba338e1077bc2c4be56a34ce2eb7ea56.tar.bz2 rails-e2de7dc5ba338e1077bc2c4be56a34ce2eb7ea56.zip |
Call `rails plugin new yaffle` in the plugins guide. [ci skip]
It's confusing to not explicitly do this step.
-rw-r--r-- | guides/source/plugins.md | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/guides/source/plugins.md b/guides/source/plugins.md index ca55ee0df2..d0aa2e55a2 100644 --- a/guides/source/plugins.md +++ b/guides/source/plugins.md @@ -34,9 +34,15 @@ different rails applications using RubyGems and Bundler if desired. Rails ships with a `rails plugin new` command which creates a - skeleton for developing any kind of Rails extension with the ability - to run integration tests using a dummy Rails application. See usage - and options by asking for help: +skeleton for developing any kind of Rails extension with the ability +to run integration tests using a dummy Rails application. Create your +plugin with the command: + +```bash +$ rails plugin new yaffle +``` + +See usage and options by asking for help: ```bash $ rails plugin --help |