diff options
author | Zachary Scott <e@zzak.io> | 2014-12-22 06:41:24 -0500 |
---|---|---|
committer | Zachary Scott <e@zzak.io> | 2014-12-22 06:41:24 -0500 |
commit | e77f24b9374837d805b43b5c2c8bb6221721550f (patch) | |
tree | db9331420ed5bda6c38bd9faaf308de95212ad2d /guides/source | |
parent | 334f620858fd73cabd6493804076b7b369edb6ab (diff) | |
parent | 1581348f28891c7e36d5e9267bd2b31bde353fbc (diff) | |
download | rails-e77f24b9374837d805b43b5c2c8bb6221721550f.tar.gz rails-e77f24b9374837d805b43b5c2c8bb6221721550f.tar.bz2 rails-e77f24b9374837d805b43b5c2c8bb6221721550f.zip |
Merge pull request #18131 from y-yagi/fix_command_in_plugins_guide
`bin/rake` does not exist in plugin directory [ci skip]
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/plugins.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/plugins.md b/guides/source/plugins.md index 7b7eb80081..eca2e06092 100644 --- a/guides/source/plugins.md +++ b/guides/source/plugins.md @@ -433,7 +433,7 @@ Once your README is solid, go through and add rdoc comments to all of the method Once your comments are good to go, navigate to your plugin directory and run: ```bash -$ bin/rake rdoc +$ bundle exec rake rdoc ``` ### References |