diff options
author | प्रथमेश Sonpatki <csonpatki@gmail.com> | 2016-05-11 19:50:25 +0530 |
---|---|---|
committer | प्रथमेश Sonpatki <csonpatki@gmail.com> | 2016-05-11 19:50:25 +0530 |
commit | bd04c0656c8335b23d16970d0865f87073fba8c9 (patch) | |
tree | 2d29a4e0eb1113554c81ead654ecd15043600596 /guides | |
parent | 5f7d3363c5b6fc3b5e8261539a420c88ddde71a5 (diff) | |
parent | 886bd9df9570a32705225796bbccd98279966aa5 (diff) | |
download | rails-bd04c0656c8335b23d16970d0865f87073fba8c9.tar.gz rails-bd04c0656c8335b23d16970d0865f87073fba8c9.tar.bz2 rails-bd04c0656c8335b23d16970d0865f87073fba8c9.zip |
Merge pull request #24975 from fgo/patch-18
Getting Started Guide: Add channels and jobs to purpose table [ci skip]
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/getting_started.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/getting_started.md b/guides/source/getting_started.md index b1bce0f043..95080570d0 100644 --- a/guides/source/getting_started.md +++ b/guides/source/getting_started.md @@ -164,7 +164,7 @@ of the files and folders that Rails created by default: | File/Folder | Purpose | | ----------- | ------- | -|app/|Contains the controllers, models, views, helpers, mailers and assets for your application. You'll focus on this folder for the remainder of this guide.| +|app/|Contains the controllers, models, views, helpers, mailers, channels, jobs and assets for your application. You'll focus on this folder for the remainder of this guide.| |bin/|Contains the rails script that starts your app and can contain other scripts you use to setup, update, deploy or run your application.| |config/|Configure your application's routes, database, and more. This is covered in more detail in [Configuring Rails Applications](configuring.html).| |config.ru|Rack configuration for Rack based servers used to start the application.| |