Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Address action_mailbox bug report templates failures with Ruby3.1.0dev #43424

Merged
merged 1 commit into from
Oct 11, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 4 additions & 0 deletions guides/bug_report_templates/action_mailbox_gem.rb
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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