diff options
author | Bundlerbot <bot@bundler.io> | 2019-12-14 14:54:04 +0000 |
---|---|---|
committer | Bundlerbot <bot@bundler.io> | 2019-12-14 14:54:04 +0000 |
commit | fc2b63cfc20a225b066993db2bf4600aca11eabb (patch) | |
tree | 8eabdc3b7f9fcd41c44add787e15e5bdfc7cfb24 | |
parent | 935c7272ba0f17f81823e704b54627b75cf7f913 (diff) | |
parent | 9c268789d18a47e3fca46f2e7e6dd9ebca0adc0d (diff) | |
download | bundler-fc2b63cfc20a225b066993db2bf4600aca11eabb.tar.gz |
Merge #7483
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 https://github.com/ruby/ruby/commit/e2708068ad65f7f9986adf4fb3a4fa660f430a5a.
### 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>
-rw-r--r-- | spec/runtime/setup_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/runtime/setup_spec.rb b/spec/runtime/setup_spec.rb index 53300af618..befc5f9d09 100644 --- a/spec/runtime/setup_spec.rb +++ b/spec/runtime/setup_spec.rb @@ -1203,7 +1203,7 @@ end 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" |