From 0aa5e8b7fcf29a7a25cbc903c559c66fc76ecfaa Mon Sep 17 00:00:00 2001 From: nick evans Date: Sun, 14 Dec 2025 22:40:44 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=A6=20Drop=20digest=20from=20Gemfile?= =?UTF-8?q?=20(workaround=20for=20#576)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit `digest` 3.2.1 was released since the last `net-imap` release. And apparently `bundle exec rake release` activates `digest` _before_ loading the Gemfile. But, since `digest` is a default gem anyway, not including it in the Gemfile should be okay, I think. See the errors here: * 1st attempt: https://github.com/ruby/net-imap/actions/runs/20212203897/job/58019727242 * Merged https://github.com/ruby/net-imap/pull/575 * 2nd attempt: https://github.com/ruby/net-imap/actions/runs/20219369554/job/58038064382 --- Gemfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index 43d65e46..82884bdc 100644 --- a/Gemfile +++ b/Gemfile @@ -4,7 +4,7 @@ source "https://rubygems.org" gemspec -gem "digest" +# gem "digest" # not included as a workaround for #576 gem "strscan" gem "base64"