No need to check for Ruby version on the bug reports template anymore

Those libraries are being defined as dependency of the right frameworks
now.
This commit is contained in:
Rafael Mendonça França 2022-01-06 20:50:33 +00:00
parent ea7e58c2f4
commit 1717237ccc
No known key found for this signature in database
GPG Key ID: FC23B6D0F1EEE948
2 changed files with 0 additions and 10 deletions

View File

@ -10,11 +10,6 @@ gemfile(true) do
# Activate the gem you are reporting the issue against.
gem "rails", "~> 7.0.0"
gem "sqlite3"
if RUBY_VERSION >= "3.1"
# 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
end
end
require "active_record/railtie"

View File

@ -9,11 +9,6 @@ gemfile(true) do
gem "rails", github: "rails/rails", branch: "main"
gem "sqlite3"
if RUBY_VERSION >= "3.1"
# 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
end
end
require "active_record/railtie"