* lib/rubygems: Update to RubyGems 2.5.1

* test/rubygems: ditto.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53032 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
hsbt 2015-12-11 02:53:09 +00:00
Родитель 165e10b6cf
Коммит 0c5841bead
5 изменённых файлов: 10 добавлений и 5 удалений

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

@ -1,3 +1,8 @@
Fri Dec 11 11:52:39 2015 SHIBATA Hiroshi <hsbt@ruby-lang.org>
* lib/rubygems: Update to RubyGems 2.5.1
* test/rubygems: ditto.
Fri Dec 11 11:38:14 2015 Nobuyoshi Nakada <nobu@ruby-lang.org>
* compile.c (iseq_compile_each, ibf_load_object_hash): rehash

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

@ -9,7 +9,7 @@ require 'rbconfig'
require 'thread'
module Gem
VERSION = '2.5.0'
VERSION = '2.5.1'
end
# Must be first since it unloads the prelude from 1.9.2

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

@ -3,7 +3,7 @@ require 'rubygems/commands/query_command'
##
# An alternate to Gem::Commands::QueryCommand that searches for gems starting
# with the the supplied argument.
# with the supplied argument.
class Gem::Commands::ListCommand < Gem::Commands::QueryCommand

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

@ -107,7 +107,7 @@
# Client A needs a stack with basic push/pop capability. They write to the
# original interface (no <tt>top</tt>), so their version constraint looks like:
#
# gem 'stack', '~> 0.0'
# gem 'stack', '>= 0.0'
#
# Essentially, any version is OK with Client A. An incompatible change to
# the library will cause them grief, but they are willing to take the chance

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

@ -52,8 +52,8 @@ class TestBundledCA < Gem::TestCase
assert_https('d2chzxaqi4y7f8.cloudfront.net')
end
def test_accessing_s3
assert_https('s3.amazonaws.com')
def test_accessing_fastly
assert_https('rubygems.global.ssl.fastly.net')
end
end if ENV['TRAVIS']