diff options
author | Antonio Tapiador del Dujo <atd@singularities.org> | 2017-10-02 13:40:03 +0200 |
---|---|---|
committer | Antonio Tapiador del Dujo <atd@singularities.org> | 2017-10-02 15:01:07 +0200 |
commit | e42100cf42345e84a83c3e711671b7e6de7fef2b (patch) | |
tree | f7e4464b03e846610c497eb18a4dc4b42874caee | |
parent | 2ae89f8b799e11a2b67e24a31952ab11f445f944 (diff) | |
download | rails-e42100cf42345e84a83c3e711671b7e6de7fef2b.tar.gz rails-e42100cf42345e84a83c3e711671b7e6de7fef2b.tar.bz2 rails-e42100cf42345e84a83c3e711671b7e6de7fef2b.zip |
Add link to Rack website
Resemble links to Bundler and Yarn,
based on feedback by @kamipo
[ci skip]
-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.| |