-
Notifications
You must be signed in to change notification settings - Fork 36
/
Appraisals
68 lines (50 loc) · 1.64 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
appraise "rails-6-0" do
gem 'combustion', "~> 1.0"
gem "rails", ">= 6.0.0", "< 6.1"
gem "pg", "~> 1.0"
gem "rspec-rails", "~> 5.0"
# Ruby 2.7 still needs webdrivers, since it can't use a new enough
# version of selenium-webdriver to download drivers itself
gem "webdrivers", ">= 5.3.1"
end
appraise "rails-6-1" do
gem 'combustion', "~> 1.0"
gem "rails", "~> 6.1.0"
gem "pg", "~> 1.0"
# sprockets-rails is already a rails 6.1 dependency, but combustion is failing
# to require it, this is one way to get it required.
# https://github.com/pat/combustion/issues/128
gem "sprockets-rails"
end
appraise "rails-7-0" do
gem 'combustion', "~> 1.0"
gem "rails", "~> 7.0.0"
gem "pg", "~> 1.0"
end
appraise "rails-7-1" do
gem 'combustion', "~> 1.0"
gem "rails", "~> 7.1.0"
gem "pg", "~> 1.0"
end
appraise "rails-7-2" do
gem 'combustion', "~> 1.0"
gem "rails", "~> 7.2.0"
gem "pg", "~> 1.0"
end
appraise "rails-8-0" do
gem 'combustion', "~> 1.0"
gem "rails", "~> 8.0.0"
gem "pg", "~> 1.0"
end
appraise "rails-edge" do
# need combustion edge to work with rails edge, will no longer
# be true on next combustion release, probably no later than Rails 7.1
# https://github.com/pat/combustion/pull/126
gem 'combustion', "~> 1.0", github: "pat/combustion"
gem "rails", git: "https://github.com/rails/rails.git", branch: "main"
gem "pg", "~> 1.0"
# Edge rails, future Rails 7.1 currently allows rack 3 -- but rails itself
# and some of our other dependencies may not actually work with rack 3 yet,
# let's test under rack 2. (Nothing in this gem deals with levels as low as rack)
gem "rack", "~> 2.0"
end