提交 6680f9c4 编写于 作者: C Carlhuda

Fix an ivar name conflict in Rails::Server

上级 fe41c703
......@@ -41,9 +41,9 @@ def self.start(app)
new(app).start
end
def initialize(app)
def initialize(app_const)
super() # Call Rack::Server#initialize without passing any options to use.
@app = app
@app_const = app_const
end
def start
......@@ -69,7 +69,7 @@ def middleware
end
def log_path
"#{File.expand_path(@app.root)}/log/#{options[:environment]}.log"
"#{File.expand_path(@app_const.root)}/log/#{options[:environment]}.log"
end
def default_options
......@@ -77,10 +77,10 @@ def default_options
:Port => 3000,
:Host => "0.0.0.0",
:environment => (ENV['RAILS_ENV'] || "development").dup,
:rack_file => "#{@app.root}/config.ru",
:rack_file => "#{@app_const.root}/config.ru",
:daemonize => false,
:debugger => false,
:pid => "#{@app.root}/tmp/pids/server.pid",
:pid => "#{@app_const.root}/tmp/pids/server.pid",
:AccessLog => []
}
end
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册