From d006c65a25006ded20e4fc8e08a8528432237874 Mon Sep 17 00:00:00 2001 From: John Nunemaker Date: Tue, 29 Jun 2021 14:52:03 -0400 Subject: [PATCH] Relax rails constraints for now I can't say I am going to debug or support 4.2 but if others want to that is fine. xref https://github.com/jnunemaker/flipper/issues/540 --- flipper-active_record.gemspec | 2 +- flipper-active_support_cache_store.gemspec | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/flipper-active_record.gemspec b/flipper-active_record.gemspec index 1b7023b42..187bbd074 100644 --- a/flipper-active_record.gemspec +++ b/flipper-active_record.gemspec @@ -25,5 +25,5 @@ Gem::Specification.new do |gem| gem.metadata = Flipper::METADATA gem.add_dependency 'flipper', "~> #{Flipper::VERSION}" - gem.add_dependency 'activerecord', '>= 5.0', '< 7' + gem.add_dependency 'activerecord', '>= 4.2', '< 7' end diff --git a/flipper-active_support_cache_store.gemspec b/flipper-active_support_cache_store.gemspec index 2b3c524a9..fc35851b6 100644 --- a/flipper-active_support_cache_store.gemspec +++ b/flipper-active_support_cache_store.gemspec @@ -21,5 +21,5 @@ Gem::Specification.new do |gem| gem.metadata = Flipper::METADATA gem.add_dependency 'flipper', "~> #{Flipper::VERSION}" - gem.add_dependency 'activesupport', '>= 5.0', '< 7' + gem.add_dependency 'activesupport', '>= 4.2', '< 7' end