forked from tombenner/reports_kit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAppraisals
More file actions
27 lines (23 loc) · 686 Bytes
/
Appraisals
File metadata and controls
27 lines (23 loc) · 686 Bytes
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
appraise 'rails_4_mysql' do
gem 'mysql2'
gem 'rails', '4.2.10'
end
appraise 'rails_4_postgresql' do
gem 'pg'
gem 'rails', '4.2.10'
end
appraise 'rails_5_mysql' do
gem 'mysql2'
gem 'rails', '5.1.3'
end
appraise 'rails_5_postgresql' do
gem 'pg'
gem 'rails', '5.1.3'
end
# Rails 5.1.4 introduced a bug that generates invalid SQL when using distinct, group, limit and count. This should be resolved in 5.1.5,
# but we'll need to specifically test against 5.1.4 to prevent this bug from impacting ReportsKit when Rails 5.1.4 is being used.
# See https://github.com/tombenner/reports_kit/issues/6
appraise 'rails_5.1.4_postgresql' do
gem 'pg'
gem 'rails', '5.1.4'
end