|
2 | 2 |
|
3 | 3 | appraise "rails-6.1" do |
4 | 4 | gem "railties", "~> 6.1.7" |
5 | | - gem "zeitwerk", "~> 2.6.18" # 2.7+ requires Ruby 3.2, and we still support Ruby 3.0 |
| 5 | + gem "zeitwerk", "~> 2.6.18" # 2.7+ requires Ruby 3.2, and we still support Ruby 3.1 |
6 | 6 | gem "base64" # not part of the default gems starting from Ruby 3.4.0 |
7 | 7 | gem "bigdecimal" # not part of the default gems starting from Ruby 3.4.0 |
8 | 8 | gem "logger" # not part of the default gems starting from Ruby 3.5.0 |
9 | 9 | gem "mutex_m" # not part of the default gems starting from Ruby 3.4.0 |
| 10 | + gem "minitest", "< 6.0" # 6.0+ requires Ruby 3.2, and we still support Ruby 3.1 |
10 | 11 | end |
11 | 12 |
|
12 | 13 | appraise "rails-7.0" do |
13 | 14 | gem "railties", "~> 7.0.8" |
14 | | - gem "zeitwerk", "~> 2.6.18" # 2.7+ requires Ruby 3.2, and we still support Ruby 3.0 |
| 15 | + gem "zeitwerk", "~> 2.6.18" # 2.7+ requires Ruby 3.2, and we still support Ruby 3.1 |
15 | 16 | gem "base64" # not part of the default gems starting from Ruby 3.4.0 |
16 | 17 | gem "bigdecimal" # not part of the default gems starting from Ruby 3.4.0 |
17 | 18 | gem "logger" # not part of the default gems starting from Ruby 3.5.0 |
18 | 19 | gem "mutex_m" # not part of the default gems starting from Ruby 3.4.0 |
| 20 | + gem "minitest", "< 6.0" # 6.0+ requires Ruby 3.2, and we still support Ruby 3.1 |
19 | 21 | end |
20 | 22 |
|
21 | 23 | appraise "rails-7.1" do |
22 | | - gem "railties", "~> 7.1.4" |
23 | | - gem "zeitwerk", "~> 2.6.18" # 2.7+ requires Ruby 3.2, and we still support Ruby 3.0 |
| 24 | + gem "railties", "~> 7.1.6" |
| 25 | + gem "zeitwerk", "~> 2.6.18" # 2.7+ requires Ruby 3.2, and we still support Ruby 3.1 |
24 | 26 | gem "securerandom", "0.3.0" # 0.4.0 requires ruby version >= 3.1.0 |
| 27 | + gem "minitest", "< 6.0" # 6.0+ requires Ruby 3.2, and we still support Ruby 3.1 |
25 | 28 | end |
26 | 29 |
|
27 | 30 | appraise "rails-7.2" do |
28 | | - gem "railties", "~> 7.2.1" |
29 | | - gem "zeitwerk", "~> 2.6.18" # 2.7+ requires Ruby 3.2, and we still support Ruby 3.0 |
| 31 | + gem "railties", "~> 7.2.3" |
| 32 | + gem "zeitwerk", "~> 2.6.18" # 2.7+ requires Ruby 3.2, and we still support Ruby 3.1 |
| 33 | + gem "minitest", "< 6.0" # 6.0+ requires Ruby 3.2, and we still support Ruby 3.1 |
30 | 34 | end |
31 | 35 |
|
32 | 36 | appraise "rails-8.0" do |
33 | | - gem "railties", "~> 8.0.0.rc1" |
| 37 | + gem "railties", "~> 8.0.4" |
34 | 38 | end |
35 | 39 |
|
36 | 40 | appraise "rails-8.1" do |
37 | | - gem "railties", "~> 8.1.0" |
| 41 | + gem "railties", "~> 8.1.1" |
38 | 42 | end |
39 | 43 |
|
40 | 44 | appraise "rails-edge" do |
|
0 commit comments