From 3cdf7f7962464b83c535c848503956e84cac3e17 Mon Sep 17 00:00:00 2001 From: Jeremy Daer Date: Tue, 27 Feb 2018 23:43:23 -0800 Subject: [PATCH] CI: test against Rails 5.x for Rubies older than 2.4.1 since Rails 6 requires 2.4.1+ --- Gemfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Gemfile b/Gemfile index df50c6855..99767d100 100644 --- a/Gemfile +++ b/Gemfile @@ -8,6 +8,8 @@ if RUBY_VERSION < '1.9.3' gem 'i18n', '< 0.7' elsif RUBY_VERSION < '2.2.2' gem 'activesupport', '< 5' +elsif RUBY_VERSION < '2.4.1' + gem 'activesupport', '< 6' else gem 'activesupport', :git => 'https://github.com/rails/rails' end