From e42100cf42345e84a83c3e711671b7e6de7fef2b Mon Sep 17 00:00:00 2001 From: Antonio Tapiador del Dujo Date: Mon, 2 Oct 2017 13:40:03 +0200 Subject: Add link to Rack website Resemble links to Bundler and Yarn, based on feedback by @kamipo [ci skip] --- guides/source/getting_started.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'guides/source') 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
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.| -- cgit v1.2.3