diff --git a/guides/source/initialization.textile b/guides/source/initialization.textile index 2699ffccda792e77fae25801ff1ddfa4f3321937..89208596756f58e89caadbef27c8b935c25bff27 100644 --- a/guides/source/initialization.textile +++ b/guides/source/initialization.textile @@ -235,11 +235,23 @@ module Rails class Server < ::Rack::Server -`fileutils` and `optparse` are standard Ruby libraries which provide helper functions for working with files and parsing options. ++fileutils+ and +optparse+ are standard Ruby libraries which provide helper functions for working with files and parsing options. h4. +actionpack/lib/action_dispatch.rb+ -Action Dispatch is the routing component of the Rails framework. It depends on Active Support, +actionpack/lib/action_pack.rb+ and +Rack+ being available. The first thing required here is +active_support+. +Action Dispatch is the routing component of the Rails framework. This file begins by requiring several other files: + + +require 'active_support' +require 'active_support/dependencies/autoload' +require 'active_support/core_ext/module/attribute_accessors' + +require 'action_pack' +require 'active_model' +require 'rack' + + +The first thing required here is +active_support+. h4. +activesupport/lib/active_support.rb+