summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBundlerbot <bot@bundler.io>2019-12-14 14:54:04 +0000
committerDavid Rodríguez <deivid.rodriguez@riseup.net>2019-12-15 12:16:11 +0100
commit9e84656672fdc6d11f54c659c338365c72e3f825 (patch)
tree9a8d6a42b39f6ce66c305efb436a794708784b65
parentacf122dc63f90174e5d6cd0e71a51768fc5007e4 (diff)
downloadbundler-9e84656672fdc6d11f54c659c338365c72e3f825.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> (cherry picked from commit fc2b63cfc20a225b066993db2bf4600aca11eabb)
-rw-r--r--spec/runtime/setup_spec.rb2
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"