Gemfile in u-case-4.2.2 vs Gemfile in u-case-4.3.0

- old
+ new

@@ -1,20 +1,21 @@ source "https://rubygems.org" git_source(:github) {|repo_name| "https://github.com/#{repo_name}" } -activerecord_version = ENV.fetch('ACTIVERECORD_VERSION', '6.1') +activerecord_version = ENV.fetch('ACTIVERECORD_VERSION', '7') activerecord = case activerecord_version when '3.2' then '3.2.22' when '4.0' then '4.0.13' when '4.1' then '4.1.16' when '4.2' then '4.2.11' when '5.0' then '5.0.7' when '5.1' then '5.1.7' - when '5.2' then '5.2.3' - when '6.0' then '6.0.3' + when '5.2' then '5.2.4' + when '6.0' then '6.0.3.4' + when '6.1' then '6.1.2' end simplecov_version = case RUBY_VERSION when /\A2.[23]/ then '~> 0.17.1' @@ -28,10 +29,10 @@ gem 'simplecov', simplecov_version, require: false if activerecord sqlite3 = case activerecord - when /\A6\.0/, nil then '~> 1.4.0' + when /\A6\.(0|1)/, nil then '~> 1.4.0' else '~> 1.3.0' end gem 'sqlite3', sqlite3 gem 'activerecord', activerecord, require: 'active_record'