diff options
author | Oscar Del Ben <info@oscardelben.com> | 2012-06-17 11:30:20 -0700 |
---|---|---|
committer | Oscar Del Ben <info@oscardelben.com> | 2012-06-17 11:30:20 -0700 |
commit | 0b66543c512e28515fae6fc5a52c6e83da874d41 (patch) | |
tree | b1d7f22f2a775ff9fcbfa663f55e2822387b318e | |
parent | 58598d97e3fb5930e6f85c9dcf5b311c7cbe4ebd (diff) | |
download | rails-0b66543c512e28515fae6fc5a52c6e83da874d41.tar.gz rails-0b66543c512e28515fae6fc5a52c6e83da874d41.tar.bz2 rails-0b66543c512e28515fae6fc5a52c6e83da874d41.zip |
Rewrite some parts of the Rails initialization guide
-rw-r--r-- | guides/source/initialization.textile | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/guides/source/initialization.textile b/guides/source/initialization.textile index 20d1fe3cb0..43d89eac4b 100644 --- a/guides/source/initialization.textile +++ b/guides/source/initialization.textile @@ -251,12 +251,8 @@ module Rails h4. +actionpack/lib/action_dispatch.rb+ -Action Dispatch is the routing component of the Rails framework. Other -than the rouing itself, it adds -functionalities like routing, session, and common middlewares. - -Action Dispatch itself is also responsible for loading Active Support, Action -Pack, Active Model, and Rack. +Action Dispatch is the routing component of the Rails framework. +It adds functionalities like routing, session, and common middlewares. h4. +rails/commands/server.rb+ @@ -364,8 +360,7 @@ h4. +config/application+ When +require APP_PATH+ is executed, +config/application.rb+ is loaded. This is a file exists in your app and it's free for you to change based -on your needs. Among other things, inside this file you load gems with -bundler, and create your application namespace. +on your needs. h4. +Rails::Server#start+ @@ -525,7 +520,7 @@ require 'rails/all' h4. +railties/lib/rails/all.rb+ -This file is responsible for requiring all the individual parts of Rails like so: +This file is responsible for requiring all the individual frameworks of Rails: <ruby> require "rails" |