aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/rails_application_templates.md
diff options
context:
space:
mode:
authorVipul A M <vipulnsward@gmail.com>2016-01-20 00:34:31 +0530
committerVipul A M <vipulnsward@gmail.com>2016-01-20 00:34:31 +0530
commitd0c62d9d1ee5af224c7651ecc7bc8075f615c826 (patch)
treec83e716636c74bb9e18c8447f2b71786dfe62082 /guides/source/rails_application_templates.md
parent1347f08521881efacfc42a7284073272affc1d1e (diff)
downloadrails-d0c62d9d1ee5af224c7651ecc7bc8075f615c826.tar.gz
rails-d0c62d9d1ee5af224c7651ecc7bc8075f615c826.tar.bz2
rails-d0c62d9d1ee5af224c7651ecc7bc8075f615c826.zip
- Changed from bin/rake to bin/rails at more application places.
- Only ones left are from the upgrading guide, and command line guide explicit section about rake Follow up of https://github.com/rails/rails/pull/23119 [ci skip]
Diffstat (limited to 'guides/source/rails_application_templates.md')
-rw-r--r--guides/source/rails_application_templates.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/rails_application_templates.md b/guides/source/rails_application_templates.md
index edd54826cf..5a46baff2d 100644
--- a/guides/source/rails_application_templates.md
+++ b/guides/source/rails_application_templates.md
@@ -25,8 +25,8 @@ $ rails new blog -m http://example.com/template.rb
You can use the rake task `rails:template` to apply templates to an existing Rails application. The location of the template needs to be passed in to an environment variable named LOCATION. Again, this can either be path to a file or a URL.
```bash
-$ bin/rake rails:template LOCATION=~/template.rb
-$ bin/rake rails:template LOCATION=http://example.com/template.rb
+$ bin/rails rails:template LOCATION=~/template.rb
+$ bin/rails rails:template LOCATION=http://example.com/template.rb
```
Template API