From 806f20a48db0002fb8c182d2f7f3cb9ad30ba175 Mon Sep 17 00:00:00 2001 From: Pat Allan Date: Sun, 9 Jan 2022 11:32:36 +1100 Subject: [PATCH] test: include net-smtp for Rails 6.1 on MRI 3.1. Only Rails 7 has it noted as a dependency. --- Gemfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Gemfile b/Gemfile index 7a070b3..797263e 100644 --- a/Gemfile +++ b/Gemfile @@ -20,3 +20,6 @@ if RUBY_VERSION.to_f > 2.4 gem "rubocop", "~> 0.92" gem "rubocop-packaging", "~> 0.5" end + +# Required for testing Rails 6.1 on MRI 3.1+ +gem "net-smtp" if RUBY_VERSION.to_f > 3.0