* lib/un.rb (httpd): set DocumentRoot to the current working
  directory by default.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@50956 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2015-06-18 13:58:26 +00:00
Родитель 82c290983f
Коммит 0b9d86f29b
1 изменённых файлов: 1 добавлений и 4 удалений

Просмотреть файл

@ -320,10 +320,7 @@ def httpd
opt = options[name] and (options[name] = Integer(opt)) rescue nil
end
options[:Port] ||= 8080 # HTTP Alternate
unless argv.size == 1
raise ArgumentError, "DocumentRoot is mandatory"
end
options[:DocumentRoot] = argv.shift
options[:DocumentRoot] = argv.shift || '.'
s = WEBrick::HTTPServer.new(options)
shut = proc {s.shutdown}
siglist = %w"TERM QUIT"