aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source
diff options
context:
space:
mode:
authorOscar Del Ben <oscar@oscardelben.com>2012-06-10 17:55:12 -0700
committerOscar Del Ben <oscar@oscardelben.com>2012-06-10 17:55:12 -0700
commitfb5d92809f0be64f20b72baeda9bf595714598c1 (patch)
tree91ce979086f034d42bee53c272f88cd4ec318e6b /guides/source
parent071170871c0cd973531eb55e5c5ee9560c7f7301 (diff)
downloadrails-fb5d92809f0be64f20b72baeda9bf595714598c1.tar.gz
rails-fb5d92809f0be64f20b72baeda9bf595714598c1.tar.bz2
rails-fb5d92809f0be64f20b72baeda9bf595714598c1.zip
Change initialization guide introduction
We will no longer cover every single file that is loaded by Rails, as this would be too difficult and time consuming to maintain. We also expect the reader to know about rails server at this point.
Diffstat (limited to 'guides/source')
-rw-r--r--guides/source/initialization.textile4
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/initialization.textile b/guides/source/initialization.textile
index 9e97cb4194..1cf49adc0c 100644
--- a/guides/source/initialization.textile
+++ b/guides/source/initialization.textile
@@ -8,14 +8,14 @@ as of Rails 4. It is an extremely in-depth guide and recommended for advanced Ra
endprologue.
-This guide goes through every single file, class and method call that is
+This guide goes through every method call that is
required to boot up the Ruby on Rails stack for a default Rails 4 application, explaining each part in detail along the way. For this guide, we will be focusing on how the two most common methods (+rails server+ and Passenger) boot a Rails application.
NOTE: Paths in this guide are relative to Rails or a Rails application unless otherwise specified.
h3. Launch!
-As of Rails 3, +script/server+ has become +rails server+. This was done to centralize all rails related commands to one common file.
+A Rails application is usually started with the command +rails server+.
h4. +bin/rails+