aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/initialization.textile
diff options
context:
space:
mode:
authorOscar Del Ben <oscar@oscardelben.com>2012-06-10 18:20:40 -0700
committerOscar Del Ben <oscar@oscardelben.com>2012-06-10 18:20:40 -0700
commit50d9781e435e64b56afb414abb1cd6073f3fd9d6 (patch)
treed73e5b8847be4dd047776022fc7c7adc19eaf14b /guides/source/initialization.textile
parent028f5b1c337a27096fe2689d62aa9e4933cd6487 (diff)
downloadrails-50d9781e435e64b56afb414abb1cd6073f3fd9d6.tar.gz
rails-50d9781e435e64b56afb414abb1cd6073f3fd9d6.tar.bz2
rails-50d9781e435e64b56afb414abb1cd6073f3fd9d6.zip
Rewrite Rails server initialization section
Diffstat (limited to 'guides/source/initialization.textile')
-rw-r--r--guides/source/initialization.textile5
1 files changed, 4 insertions, 1 deletions
diff --git a/guides/source/initialization.textile b/guides/source/initialization.textile
index 45dd41f67a..319354ea79 100644
--- a/guides/source/initialization.textile
+++ b/guides/source/initialization.textile
@@ -343,7 +343,10 @@ def parse!(args)
...
</ruby>
-This method will set up keys for the +options+ which Rails will then be able to use to determine how its server should run. After +initialize+ has finished, then the +start+ method will launch the server.
+This method will set up keys for the +options+ which Rails will then be
+able to use to determine how its server should run. After +initialize+
+has finished, we jump back into +rails/server+ where +APP_PATH+ (which was
+set earlier) is required.
h4. +Rails::Server#start+