diff options
author | Bundlerbot <bot@bundler.io> | 2019-04-14 12:40:12 +0000 |
---|---|---|
committer | Bundlerbot <bot@bundler.io> | 2019-04-14 12:40:12 +0000 |
commit | 0a20c21d87a85d5ce581480e8f6dd647b76176b2 (patch) | |
tree | 31b9330c07d49757962c3fa88f141571876dbcdd /spec/commands/show_spec.rb | |
parent | 9424cedb913b738bbd733e30c772524ea054f5fe (diff) | |
parent | 7ce68899d182f84b5a400cf5c5e217e1430b97a6 (diff) | |
download | bundler-0a20c21d87a85d5ce581480e8f6dd647b76176b2.tar.gz |
Merge #7128
7128: Backport to workaround from ruby core. r=deivid-rodriguez a=hsbt
### What was the end-user problem that led to this PR?
The current master branch couldn't invoke with the ruby core repository.
### What was your diagnosis of the problem?
1. We need to add explicitly declare `rspec` in spec_helper.rb
2. Some examples were failed on ruby core repository.
### What is your fix for the problem, implemented in this PR?
1. simply added.
2. update the `ruby_repo` labels for skipping to run.
Co-authored-by: SHIBATA Hiroshi <hsbt@ruby-lang.org>
Diffstat (limited to 'spec/commands/show_spec.rb')
-rw-r--r-- | spec/commands/show_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/commands/show_spec.rb b/spec/commands/show_spec.rb index 8fb6631f82..6e1986e35f 100644 --- a/spec/commands/show_spec.rb +++ b/spec/commands/show_spec.rb @@ -173,7 +173,7 @@ RSpec.describe "bundle show", :bundler => "< 3" do end context "with a valid regexp for gem name" do - it "presents alternatives" do + it "presents alternatives", :ruby_repo do install_gemfile <<-G source "file://#{gem_repo1}" gem "rack" |