1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Merge fix for gem server, bump RubyGems version to 1.3.7

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27574 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
drbrain 2010-05-01 05:19:16 +00:00
parent 9111bbf818
commit 40cd5e8a79
4 changed files with 10 additions and 2 deletions

View file

@ -1,3 +1,7 @@
Sat May 1 14:08:29 2010 Eric Hodel <drbrain@segment7.net>
* lib/rubygems/server.rb: Fix bug when serving gems.
Sat May 1 14:05:36 2010 Eric Hodel <drbrain@segment7.net>
* lib/rdoc: Upgrade to RDoc 2.5.8.

4
NEWS
View file

@ -213,6 +213,10 @@ with all sufficient information, see the ChangeLog file.
* Updated to RDoc 2.5.8
* RubyGems
* Updated to RubyGems 1.3.7
* logger
* imported upstream version (logger/1.2.7)

View file

@ -100,7 +100,7 @@ require 'etc'
# -The RubyGems Team
module Gem
RubyGemsVersion = VERSION = '1.3.6.1'
RubyGemsVersion = VERSION = '1.3.7'
##
# Raised when RubyGems is unable to load or activate a gem. Contains the

View file

@ -797,7 +797,7 @@ div.method-source-code pre { color: #ffdead; overflow: hidden; }
paths = { "/gems" => "/cache/", "/doc_root" => "/doc/" }
paths.each do |mount_point, mount_dir|
@server.mount(mount_point, WEBrick::HTTPServlet::FileHandler,
File.join(@gem_dir.first, mount_dir), true)
File.join(@gem_dirs.first, mount_dir), true)
end
trap("INT") { @server.shutdown; exit! }