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

revert r62302 and force to define the version constant

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@62303 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
usa 2018-02-08 07:34:41 +00:00
parent db52886028
commit db0a4df62c

View file

@ -6,9 +6,7 @@ require 'rubygems/commands/setup_command'
class TestGemCommandsSetupCommand < Gem::TestCase
gem = File.exist?(gem = File.expand_path("bin/gem", @@project_dir)) ?
[ENV["RUBY"] || "ruby", gem] : ["gem"]
BUNDLER_VERS = IO.popen(gem + %w[list -e bundler], &:read)[/([^() ]+)\)\Z/, 1] || "1.16.1" if Gem::USE_BUNDLER_FOR_GEMDEPS
BUNDLER_VERS = "1.16.1"
def setup
super
@ -25,8 +23,6 @@ class TestGemCommandsSetupCommand < Gem::TestCase
File.open 'lib/rubygems/test_case.rb', 'w' do |io| io.puts '# test_case.rb' end
File.open 'lib/rubygems/ssl_certs/rubygems.org/foo.pem', 'w' do |io| io.puts 'PEM' end
return unless Gem::USE_BUNDLER_FOR_GEMDEPS
FileUtils.mkdir_p 'bundler/exe'
FileUtils.mkdir_p 'bundler/lib/bundler'