From 7e710821317e573db8b2ad6897feaaa7f5fbfaef Mon Sep 17 00:00:00 2001 From: Shane da Silva Date: Thu, 26 Sep 2019 11:59:05 -0700 Subject: [PATCH] Relax dependencies to allow Rails 6.x Continuing from cf67346d, open the constraint to allow Rails 6.x instead of just 6.0. --- db-query-matchers.gemspec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/db-query-matchers.gemspec b/db-query-matchers.gemspec index b2cc65f..56f1d0c 100644 --- a/db-query-matchers.gemspec +++ b/db-query-matchers.gemspec @@ -15,10 +15,10 @@ Gem::Specification.new do |spec| spec.files = Dir['lib/**/*.rb'] spec.require_paths = ['lib'] - spec.add_runtime_dependency 'activesupport', '>= 4.0', "< 6.1" + spec.add_runtime_dependency 'activesupport', '>= 4.0', "< 7" spec.add_runtime_dependency 'rspec', '~> 3.0' - spec.add_development_dependency 'activerecord', '>= 4.0', "< 6.1" + spec.add_development_dependency 'activerecord', '>= 4.0', "< 7" spec.add_development_dependency 'sqlite3' spec.add_development_dependency "appraisal", "~> 2.0"