static public Method

DispatchServlet.new(server, options)

There's no documentation for this item.

Source Code

# File webrick_server.rb, line 66
def initialize(server, options) #:nodoc:
  @server_options = options
  @file_handler = WEBrick::HTTPServlet::FileHandler.new(server, options[:server_root])
  # Change to the RAILS_ROOT, since Webrick::Daemon.start does a Dir::cwd("/") 
  # OPTIONS['working_directory'] is an absolute path of the RAILS_ROOT, set in railties/lib/commands/servers/webrick.rb 
  Dir.chdir(OPTIONS['working_directory']) if defined?(OPTIONS) && File.directory?(OPTIONS['working_directory']) 
  super
end
Comments

Have your say
Please use Textile formatting (click here for a cheat sheet). Use <code/> and <pre/> for code samples.
Click here to login with OpenID to to post comments.