diff options
author | Agis Anastasopoulos <corestudiosinc@gmail.com> | 2012-11-16 12:35:48 +0200 |
---|---|---|
committer | Agis Anastasopoulos <corestudiosinc@gmail.com> | 2012-11-16 12:35:48 +0200 |
commit | 991b8839576d52682b535cf19cc2d3e5896b7803 (patch) | |
tree | 6f732333acadef8430f9a8cf71e9c5116c3571ee | |
parent | e7ba7c3b95be4f46d7d27fcfd82dd4865c159393 (diff) | |
download | rails-991b8839576d52682b535cf19cc2d3e5896b7803.tar.gz rails-991b8839576d52682b535cf19cc2d3e5896b7803.tar.bz2 rails-991b8839576d52682b535cf19cc2d3e5896b7803.zip |
Add link to the Application Templates guide
-rw-r--r-- | guides/source/generators.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/generators.md b/guides/source/generators.md index 6226e73f1a..adfca9b4a4 100644 --- a/guides/source/generators.md +++ b/guides/source/generators.md @@ -376,7 +376,7 @@ Fallbacks allow your generators to have a single responsibility, increasing code Application Templates --------------------- -Now that you've seen how generators can be used _inside_ an application, did you know they can also be used to _generate_ applications too? This kind of generator is referred as a "template". +Now that you've seen how generators can be used _inside_ an application, did you know they can also be used to _generate_ applications too? This kind of generator is referred as a "template". This is a brief overview of the Templates API. For detailed documentation see the [Rails Application Templates guide](http://guides.rubyonrails.org/rails_application_templates.html) ```ruby gem "rspec-rails", group: "test" |