diff options
author | Oscar Del Ben <oscar@oscardelben.com> | 2012-06-10 18:20:40 -0700 |
---|---|---|
committer | Oscar Del Ben <oscar@oscardelben.com> | 2012-06-10 18:20:40 -0700 |
commit | 50d9781e435e64b56afb414abb1cd6073f3fd9d6 (patch) | |
tree | d73e5b8847be4dd047776022fc7c7adc19eaf14b /guides/source | |
parent | 028f5b1c337a27096fe2689d62aa9e4933cd6487 (diff) | |
download | rails-50d9781e435e64b56afb414abb1cd6073f3fd9d6.tar.gz rails-50d9781e435e64b56afb414abb1cd6073f3fd9d6.tar.bz2 rails-50d9781e435e64b56afb414abb1cd6073f3fd9d6.zip |
Rewrite Rails server initialization section
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/initialization.textile | 5 |
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+ |