Skip to content

Commit

Permalink
Merge pull request #43424 from yahonda/net_smtp_requires_digest
Browse files Browse the repository at this point in the history
Address action_mailbox bug report templates failures with Ruby3.1.0dev
  • Loading branch information
kamipo committed Oct 11, 2021
2 parents aa29638 + 2be1df7 commit bc590ff
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions guides/bug_report_templates/action_mailbox_gem.rb
Expand Up @@ -14,6 +14,10 @@
# net-smtp, net-imap and net-pop were removed from default gems in Ruby 3.1, but is used by the `mail` gem.
# So we need to add them as dependencies until `mail` is fixed: https://github.com/mikel/mail/pull/1439
gem "net-smtp", require: false

# digest gem, which is one of the default gems has bumped to 3.0.1.pre for ruby 3.1.0dev.
# Also `net-smtp` v0.2.2 adds dependency to digest gem which attempts to install digest 3.0.0.
gem "digest", "~> 3.0.1.pre", require: false
end
end

Expand Down
4 changes: 4 additions & 0 deletions guides/bug_report_templates/action_mailbox_main.rb
Expand Up @@ -13,6 +13,10 @@
# net-smtp, net-imap and net-pop were removed from default gems in Ruby 3.1, but is used by the `mail` gem.
# So we need to add them as dependencies until `mail` is fixed: https://github.com/mikel/mail/pull/1439
gem "net-smtp", require: false

# digest gem, which is one of the default gems has bumped to 3.0.1.pre for ruby 3.1.0dev.
# Also `net-smtp` v0.2.2 adds dependency to digest gem which attempts to install digest 3.0.0.
gem "digest", "~> 3.0.1.pre", require: false
end
end

Expand Down

0 comments on commit bc590ff

Please sign in to comment.