aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/webrick_server.rb
diff options
context:
space:
mode:
authorAnil Wadghule <anildigital@gmail.com>2010-04-12 22:20:55 +0530
committerAnil Wadghule <anildigital@gmail.com>2010-04-12 22:53:49 +0530
commit84e46437fa50782dd38b96b8df00ca8b017c892e (patch)
tree9e9743de0e1cd9220a0f9a850865787f41cba875 /railties/lib/rails/webrick_server.rb
parent41bcf06d3289e2292fcc3819c8f104252af36adc (diff)
downloadrails-84e46437fa50782dd38b96b8df00ca8b017c892e.tar.gz
rails-84e46437fa50782dd38b96b8df00ca8b017c892e.tar.bz2
rails-84e46437fa50782dd38b96b8df00ca8b017c892e.zip
Replace 'RAILS_ROOT' to 'Rails.root' and 'RAILS_ENV' to 'Rails.env' in significant places.
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