aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/webrick_server.rb
diff options
context:
space:
mode:
Diffstat (limited to 'railties/lib/rails/webrick_server.rb')
-rw-r--r--railties/lib/rails/webrick_server.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/railties/lib/rails/webrick_server.rb b/railties/lib/rails/webrick_server.rb
index 2f60151b22..f3b74c28d3 100644
--- a/railties/lib/rails/webrick_server.rb
+++ b/railties/lib/rails/webrick_server.rb
@@ -63,8 +63,8 @@ class DispatchServlet < WEBrick::HTTPServlet::AbstractServlet
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
+ # 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