diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2013-09-12 19:08:24 -0300 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2013-09-12 19:08:24 -0300 |
commit | 8f57b22025999e6911399d81b93ac145ec674bef (patch) | |
tree | 2b577a94de80742d4c375d3f896f39ba9b9066ec /guides/source | |
parent | 2165bef01c1a0ec216096220121bc83165d0c9e1 (diff) | |
download | rails-8f57b22025999e6911399d81b93ac145ec674bef.tar.gz rails-8f57b22025999e6911399d81b93ac145ec674bef.tar.bz2 rails-8f57b22025999e6911399d81b93ac145ec674bef.zip |
Use the Rails binary when generating task
Copy-edits
[ci skip]
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/command_line.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/command_line.md b/guides/source/command_line.md index b2af72bac6..6f792be8ae 100644 --- a/guides/source/command_line.md +++ b/guides/source/command_line.md @@ -494,8 +494,8 @@ The `tmp:` namespaced tasks will help you clear and create the `Rails.root/tmp` ### Custom Rake Tasks Custom rake tasks have a `.rake` extension and are placed in -`Rails.root/lib/tasks`. You can create these custom rake tasks with the `rails -generate task` command. +`Rails.root/lib/tasks`. You can create these custom rake tasks with the +`bin/rails generate task` command. ```ruby desc "I am short, but comprehensive description for my cool task" |