diff options
author | k0kubun <k0kubun@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-12-09 12:35:13 +0000 |
---|---|---|
committer | k0kubun <k0kubun@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-12-09 12:35:13 +0000 |
commit | 596d7bdec4c389090afcddbd448282ec4bcfdf86 (patch) | |
tree | fbf885048f327bca6e0a6060db5601448d700a0d /test/rdoc/minitest_helper.rb | |
parent | 0777262b1b08722ee99d73fb8c9703aa9d1a0e98 (diff) |
test/rdoc/minitest_helper.rb: partially revert r66286
to resurrect r65613
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@66299 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/rdoc/minitest_helper.rb')
-rw-r--r-- | test/rdoc/minitest_helper.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/rdoc/minitest_helper.rb b/test/rdoc/minitest_helper.rb index 1814669bf9..9fb0cd676b 100644 --- a/test/rdoc/minitest_helper.rb +++ b/test/rdoc/minitest_helper.rb @@ -1,7 +1,8 @@ # frozen_string_literal: true +require 'bundler/errors' begin gem 'minitest', '~> 5.0' -rescue NoMethodError, Gem::LoadError +rescue NoMethodError, Gem::LoadError, Bundler::GemfileNotFound # for ruby tests end |