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

* lib/rubygems: Update to RubyGems master commit 2a74263. This fixes

several bugs in RubyGems 2.2.0.preview.1.

* test/rubygems:  ditto.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43298 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
drbrain 2013-10-16 00:14:16 +00:00
parent cfe1458078
commit 28918eac58
62 changed files with 1270 additions and 3847 deletions

View file

@ -1,3 +1,4 @@
require 'cgi'
require 'uri'
class Gem::UriFormatter
@ -9,7 +10,7 @@ class Gem::UriFormatter
def escape
return unless @uri
escaper.escape @uri
CGI.escape @uri
end
##
@ -21,18 +22,7 @@ class Gem::UriFormatter
def unescape
return unless @uri
escaper.unescape @uri
end
private
def escaper
@uri_parser ||=
begin
URI::Parser.new
rescue NameError
URI
end
CGI.unescape @uri
end
end