diff options
author | Ryuta Kamizono <kamipo@gmail.com> | 2017-10-02 22:50:17 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-02 22:50:17 +0900 |
commit | 012196bbc78cf1c9243d0c2ceaa1e509a9a34a11 (patch) | |
tree | f7e4464b03e846610c497eb18a4dc4b42874caee /guides/source | |
parent | 2ae89f8b799e11a2b67e24a31952ab11f445f944 (diff) | |
parent | e42100cf42345e84a83c3e711671b7e6de7fef2b (diff) | |
download | rails-012196bbc78cf1c9243d0c2ceaa1e509a9a34a11.tar.gz rails-012196bbc78cf1c9243d0c2ceaa1e509a9a34a11.tar.bz2 rails-012196bbc78cf1c9243d0c2ceaa1e509a9a34a11.zip |
Merge pull request #30774 from atd/master
Add link to Rack website [ci skip]
Diffstat (limited to 'guides/source')
-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 70a945ad9e..8965e74fe2 100644 --- a/guides/source/getting_started.md +++ b/guides/source/getting_started.md @@ -172,7 +172,7 @@ of the files and folders that Rails created by default: |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.| +|config.ru|Rack configuration for Rack based servers used to start the application. For more information about Rack, see the [Rack website](https://rack.github.io/).| |db/|Contains your current database schema, as well as the database migrations.| |Gemfile<br>Gemfile.lock|These files allow you to specify what gem dependencies are needed for your Rails application. These files are used by the Bundler gem. For more information about Bundler, see the [Bundler website](https://bundler.io).| |lib/|Extended modules for your application.| |