Skip to content
This repository has been archived by the owner on Apr 14, 2021. It is now read-only.

Commit

Permalink
Merge #7483
Browse files Browse the repository at this point in the history
7483: Delegate should be supported now r=deivid-rodriguez a=deivid-rodriguez

### What was the end-user problem that led to this PR?

The problem was that delegate is now supported since `did_you_mean` drop its dependency on it at ruby/ruby@e270806.

### What was your diagnosis of the problem?

My diagnosis was that we can test that arbitrary `delegate` versions can be included in Gemfiles again.

### What is your fix for the problem, implemented in this PR?

My fix removes `delegate` from the exemptions.

Co-authored-by: David Rodríguez <deivid.rodriguez@riseup.net>
(cherry picked from commit fc2b63c)
  • Loading branch information
bundlerbot authored and deivid-rodriguez committed Dec 15, 2019
1 parent acf122d commit 9e84656
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spec/runtime/setup_spec.rb
Expand Up @@ -1203,7 +1203,7 @@ def lock_with(ruby_version = nil)
describe "default gem activation" do
let(:exemptions) do
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new("2.7")
%w[delegate did_you_mean]
%w[did_you_mean]
else
%w[io-console openssl]
end << "bundler"
Expand Down

0 comments on commit 9e84656

Please sign in to comment.