Skip to content

Commit 34b3eae

Browse files
committed
Fix builds with ActiveRecord 7.0
1 parent 37d2ad5 commit 34b3eae

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

Gemfile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,11 @@ group :development, :test do
1010
when 'active_record'
1111
orm_version ||= '7.0'
1212
case orm_version
13-
when '6.1', '7.0', '7.1', '7.2', '8.0'
13+
when '7.0'
14+
gem 'activerecord', '~> 7.0'
15+
# see https://stackoverflow.com/questions/79360526/uninitialized-constant-activesupportloggerthreadsafelevellogger-nameerror
16+
gem 'concurrent-ruby', '1.3.4'
17+
when '7.1', '7.2', '8.0'
1418
gem 'activerecord', "~> #{orm_version}.0"
1519
when 'edge'
1620
git 'https://github.com/rails/rails.git', branch: 'main' do

0 commit comments

Comments
 (0)