From 7a27831664d226ad530e0bd63243ce60bb32c01a Mon Sep 17 00:00:00 2001 From: Zack Mariscal Date: Sat, 3 Feb 2024 08:25:07 -0800 Subject: [PATCH] restrict activerecord-trilogy-adapter to AR_VERSIONS < 7.1 as it's not needed --- Gemfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index 696a81b2..64467f2b 100644 --- a/Gemfile +++ b/Gemfile @@ -27,7 +27,7 @@ platforms :ruby do # seamless_database_pool requires Ruby ~> 2.0 gem "seamless_database_pool", "~> 1.0.20" if Gem::Version.new(RUBY_VERSION) < Gem::Version.new('3.0.0') gem "trilogy" if version >= 6.1 - gem "activerecord-trilogy-adapter" if version >= 6.1 + gem "activerecord-trilogy-adapter" if version <= 7.0 end platforms :jruby do