-
Notifications
You must be signed in to change notification settings - Fork 1
/
Appraisals
33 lines (27 loc) · 994 Bytes
/
Appraisals
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
appraise 'active_record_4.2' do
gem 'sqlite3', '~> 1.3.6'
gem 'activerecord', git: 'https://github.com/rails/rails', branch: '4-2-stable'
end
appraise 'active_record_5.0' do
gem 'sqlite3', '~> 1.3.6'
gem 'activerecord', git: 'https://github.com/rails/rails', branch: '5-0-stable'
end
appraise 'active_record_5.1' do
gem 'sqlite3', '~> 1.3.6'
gem 'activerecord', git: 'https://github.com/rails/rails', branch: '5-1-stable'
end
appraise 'active_record_5.2' do
gem 'sqlite3', '~> 1.3.6'
gem 'activerecord', git: 'https://github.com/rails/rails', branch: '5-2-stable'
end
appraise 'active_record_6.0' do
gem 'sqlite3', '< 1.5'
gem 'activerecord', git: 'https://github.com/rails/rails', branch: '6-0-stable'
end
appraise 'active_record_6.1' do
gem 'sqlite3', '< 1.5'
gem 'activerecord', git: 'https://github.com/rails/rails', branch: '6-1-stable'
end
appraise 'active_record_7.0' do
gem 'activerecord', git: 'https://github.com/rails/rails', branch: '7-0-stable'
end