4
4
test : test-stable rubocop
5
5
6
6
.PHONY : test-stable
7
- test-stable : rails-6.0 rails-6.1 rails-7.0 rails-7.1
7
+ test-stable : rails-6.0 rails-6.1 rails-7.0 rails-7.1 rails-7.2
8
8
9
9
.PHONY : test-all
10
- test-all : test rails-main rails-7.2
10
+ test-all : test rails-main rails-8.0
11
11
12
12
.PHONY : update-test
13
13
update-test : update test-all
14
- git add Gemfile.lock gemfiles/* /Gemfile.lock
15
- git commit -m " update dependencies"
14
+ # git add Gemfile.lock gemfiles/*/Gemfile.lock
15
+ # git commit -m "update dependencies"
16
16
17
17
.PHONY : rails-6.0
18
18
rails-6.0 :
@@ -39,6 +39,11 @@ rails-7.2:
39
39
bin/make-helper.sh 7.2 bundle --quiet
40
40
bin/make-helper.sh 7.2 rspec $(SPEC )
41
41
42
+ .PHONY : rails-8.0
43
+ rails-8.0 :
44
+ bin/make-helper.sh 8.0 bundle --quiet
45
+ bin/make-helper.sh 8.0 rspec $(SPEC )
46
+
42
47
.PHONY : rails-main
43
48
rails-main :
44
49
bin/make-helper.sh main bundle --quiet
51
56
bin/make-helper.sh 7.0 gem install bundler:2.4.22
52
57
bin/make-helper.sh 7.1 gem install bundler:2.4.22
53
58
bin/make-helper.sh 7.2 gem install bundler:2.5.6
54
- bin/make-helper.sh main gem install bundler:2.5.6
59
+ bin/make-helper.sh 7.2 gem install bundler:2.5.22
60
+ bin/make-helper.sh main gem install bundler:2.5.22
55
61
bin/make-helper.sh . gem install bundler:2.4.22
56
62
57
63
.PHONY : update
@@ -61,6 +67,7 @@ update:
61
67
bin/make-helper.sh 7.0 bundle update && bin/make-helper.sh 7.0 bundle clean --force
62
68
bin/make-helper.sh 7.1 bundle update && bin/make-helper.sh 7.1 bundle clean --force
63
69
bin/make-helper.sh 7.2 bundle update && bin/make-helper.sh 7.2 bundle clean --force
70
+ bin/make-helper.sh 8.0 bundle update && bin/make-helper.sh 8.0 bundle clean --force
64
71
bin/make-helper.sh main bundle update && bin/make-helper.sh main bundle clean --force
65
72
bin/make-helper.sh . bundle update && bin/make-helper.sh . bundle clean --force
66
73
0 commit comments