From 2f6e8099e3cfd025fdca7a13162a5b2087da6db7 Mon Sep 17 00:00:00 2001 From: Oscar Del Ben Date: Sat, 9 Jun 2012 12:20:47 -0700 Subject: Add missing requires for rails/commands/server --- guides/source/initialization.textile | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/guides/source/initialization.textile b/guides/source/initialization.textile index 48d4373afe..2699ffccda 100644 --- a/guides/source/initialization.textile +++ b/guides/source/initialization.textile @@ -224,7 +224,18 @@ when 'server' } -This file will change into the root of the directory (a path two directories back from +APP_PATH+ which points at +config/application.rb+), but only if the +config.ru+ file isn't found. This then requires +rails/commands/server+ which requires +action_dispatch+ and sets up the +Rails::Server+ class. +This file will change into the root of the directory (a path two directories back from +APP_PATH+ which points at +config/application.rb+), but only if the +config.ru+ file isn't found. This then requires +rails/commands/server+ which sets up the +Rails::Server+ class. + + +require 'fileutils' +require 'optparse' +require 'action_dispatch' + +module Rails + class Server < ::Rack::Server + + +`fileutils` and `optparse` are standard Ruby libraries which provide helper functions for working with files and parsing options. h4. +actionpack/lib/action_dispatch.rb+ -- cgit v1.2.3