diff options
author | Oscar Del Ben <info@oscardelben.com> | 2012-05-22 08:32:12 -0700 |
---|---|---|
committer | Oscar Del Ben <info@oscardelben.com> | 2012-05-22 08:32:12 -0700 |
commit | acdf8ac58dbf71ac274dc93fd9b4c6da539a36b3 (patch) | |
tree | 6a65198c593f0a033683b4022766901ed54ea67a /guides | |
parent | d1cab8e5e0aba87e307a387f1b8267e5c41419c6 (diff) | |
download | rails-acdf8ac58dbf71ac274dc93fd9b4c6da539a36b3.tar.gz rails-acdf8ac58dbf71ac274dc93fd9b4c6da539a36b3.tar.bz2 rails-acdf8ac58dbf71ac274dc93fd9b4c6da539a36b3.zip |
The initialization guide will cover Rails 4
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/initialization.textile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/guides/source/initialization.textile b/guides/source/initialization.textile index 155a439e64..361045282a 100644 --- a/guides/source/initialization.textile +++ b/guides/source/initialization.textile @@ -1,13 +1,15 @@ h2. The Rails Initialization Process -This guide explains the internals of the initialization process in Rails as of Rails 3.1. It is an extremely in-depth guide and recommended for advanced Rails developers. +This guide explains the internals of the initialization process in Rails +as of Rails 4. It is an extremely in-depth guide and recommended for advanced Rails developers. * Using +rails server+ * Using Passenger endprologue. -This guide goes through every single file, class and method call that is required to boot up the Ruby on Rails stack for a default Rails 3.1 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. +This guide goes through every single file, class and 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. |