Skip to content

Commit 730fee7

Browse files
committed
Bump ruby
1 parent 913e03f commit 730fee7

3 files changed

Lines changed: 53 additions & 39 deletions

File tree

.github/workflows/main.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@ jobs:
1919
strategy:
2020
matrix:
2121
ruby:
22-
- "3.3.0"
22+
- "3.3.10"
23+
- "3.4.8"
24+
- "4.0.1"
2325

2426
steps:
2527
- name: Install sdl

.ruby-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.4.7
1+
4.0.1

Gemfile.lock

Lines changed: 49 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -1,67 +1,79 @@
11
GEM
22
remote: https://rubygems.org/
33
specs:
4-
ast (2.4.2)
5-
debug (1.9.2)
4+
ast (2.4.3)
5+
date (3.5.1)
6+
debug (1.11.1)
67
irb (~> 1.10)
78
reline (>= 0.3.8)
9+
erb (6.0.1)
810
gosu (1.4.6)
9-
io-console (0.7.2)
10-
irb (1.13.1)
11+
io-console (0.8.2)
12+
irb (1.16.0)
13+
pp (>= 0.6.0)
1114
rdoc (>= 4.0.0)
1215
reline (>= 0.4.2)
13-
json (2.7.2)
14-
language_server-protocol (3.17.0.3)
16+
json (2.18.0)
17+
language_server-protocol (3.17.0.5)
1518
lint_roller (1.1.0)
16-
minitest (5.22.3)
17-
parallel (1.24.0)
18-
parser (3.3.1.0)
19+
minitest (5.27.0)
20+
parallel (1.27.0)
21+
parser (3.3.10.1)
1922
ast (~> 2.4.1)
2023
racc
21-
psych (5.1.2)
24+
pp (0.6.3)
25+
prettyprint
26+
prettyprint (0.2.0)
27+
prism (1.9.0)
28+
psych (5.3.1)
29+
date
2230
stringio
23-
racc (1.7.3)
31+
racc (1.8.1)
2432
rainbow (3.1.1)
25-
rake (13.2.1)
26-
rdoc (6.6.3.1)
33+
rake (13.3.1)
34+
rdoc (7.1.0)
35+
erb
2736
psych (>= 4.0.0)
28-
regexp_parser (2.9.0)
29-
reline (0.5.5)
37+
tsort
38+
regexp_parser (2.11.3)
39+
reline (0.6.3)
3040
io-console (~> 0.5)
31-
rexml (3.3.3)
32-
strscan
33-
rubocop (1.62.1)
41+
rubocop (1.82.1)
3442
json (~> 2.3)
35-
language_server-protocol (>= 3.17.0)
43+
language_server-protocol (~> 3.17.0.2)
44+
lint_roller (~> 1.1.0)
3645
parallel (~> 1.10)
3746
parser (>= 3.3.0.2)
3847
rainbow (>= 2.2.2, < 4.0)
39-
regexp_parser (>= 1.8, < 3.0)
40-
rexml (>= 3.2.5, < 4.0)
41-
rubocop-ast (>= 1.31.1, < 2.0)
48+
regexp_parser (>= 2.9.3, < 3.0)
49+
rubocop-ast (>= 1.48.0, < 2.0)
4250
ruby-progressbar (~> 1.7)
43-
unicode-display_width (>= 2.4.0, < 3.0)
44-
rubocop-ast (1.31.3)
45-
parser (>= 3.3.1.0)
46-
rubocop-performance (1.20.2)
47-
rubocop (>= 1.48.1, < 2.0)
48-
rubocop-ast (>= 1.30.0, < 2.0)
51+
unicode-display_width (>= 2.4.0, < 4.0)
52+
rubocop-ast (1.49.0)
53+
parser (>= 3.3.7.2)
54+
prism (~> 1.7)
55+
rubocop-performance (1.26.1)
56+
lint_roller (~> 1.1)
57+
rubocop (>= 1.75.0, < 2.0)
58+
rubocop-ast (>= 1.47.1, < 2.0)
4959
ruby-progressbar (1.13.0)
50-
standard (1.35.1)
60+
standard (1.53.0)
5161
language_server-protocol (~> 3.17.0.2)
5262
lint_roller (~> 1.0)
53-
rubocop (~> 1.62.0)
63+
rubocop (~> 1.82.0)
5464
standard-custom (~> 1.0.0)
55-
standard-performance (~> 1.3)
65+
standard-performance (~> 1.8)
5666
standard-custom (1.0.2)
5767
lint_roller (~> 1.0)
5868
rubocop (~> 1.50)
59-
standard-performance (1.3.1)
69+
standard-performance (1.9.0)
6070
lint_roller (~> 1.1)
61-
rubocop-performance (~> 1.20.2)
62-
stringio (3.1.0)
63-
strscan (3.1.0)
64-
unicode-display_width (2.5.0)
71+
rubocop-performance (~> 1.26.0)
72+
stringio (3.2.0)
73+
tsort (0.2.0)
74+
unicode-display_width (3.2.0)
75+
unicode-emoji (~> 4.1)
76+
unicode-emoji (4.2.0)
6577

6678
PLATFORMS
6779
arm64-darwin-23
@@ -75,7 +87,7 @@ DEPENDENCIES
7587
standard (~> 1.3)
7688

7789
RUBY VERSION
78-
ruby 3.4.7p58
90+
ruby 4.0.1p0
7991

8092
BUNDLED WITH
8193
2.5.10

0 commit comments

Comments
 (0)