Skip to content

Commit fd10fb5

Browse files
authored
Merge pull request #7 from virolea/ruby-3.0-fix
Require Forwardable module explicitly
2 parents 57b14af + 95fbe5d commit fd10fb5

File tree

3 files changed

+29
-22
lines changed

3 files changed

+29
-22
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ jobs:
1212
matrix:
1313
ruby-version:
1414
- "3.1"
15+
- "3.3"
1516
runs-on: ubuntu-latest
1617

1718
steps:

Gemfile.lock

Lines changed: 27 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -10,51 +10,56 @@ GEM
1010
specs:
1111
ast (2.4.2)
1212
bindata (2.4.15)
13-
json (2.6.3)
13+
json (2.7.2)
1414
language_server-protocol (3.17.0.3)
15-
lint_roller (1.0.0)
15+
lint_roller (1.1.0)
1616
minitest (5.18.0)
17-
parallel (1.23.0)
18-
parser (3.2.2.1)
17+
parallel (1.26.1)
18+
parser (3.3.4.2)
1919
ast (~> 2.4.1)
20+
racc
21+
racc (1.8.1)
2022
rainbow (3.1.1)
2123
rake (13.0.6)
22-
regexp_parser (2.8.0)
23-
rexml (3.3.3)
24+
regexp_parser (2.9.2)
25+
rexml (3.3.4)
2426
strscan
25-
rubocop (1.50.2)
27+
rubocop (1.64.1)
2628
json (~> 2.3)
29+
language_server-protocol (>= 3.17.0)
2730
parallel (~> 1.10)
28-
parser (>= 3.2.0.0)
31+
parser (>= 3.3.0.2)
2932
rainbow (>= 2.2.2, < 4.0)
3033
regexp_parser (>= 1.8, < 3.0)
3134
rexml (>= 3.2.5, < 4.0)
32-
rubocop-ast (>= 1.28.0, < 2.0)
35+
rubocop-ast (>= 1.31.1, < 2.0)
3336
ruby-progressbar (~> 1.7)
3437
unicode-display_width (>= 2.4.0, < 3.0)
35-
rubocop-ast (1.28.1)
36-
parser (>= 3.2.1.0)
37-
rubocop-performance (1.16.0)
38-
rubocop (>= 1.7.0, < 2.0)
39-
rubocop-ast (>= 0.4.0)
38+
rubocop-ast (1.32.0)
39+
parser (>= 3.3.1.0)
40+
rubocop-performance (1.21.1)
41+
rubocop (>= 1.48.1, < 2.0)
42+
rubocop-ast (>= 1.31.1, < 2.0)
4043
ruby-progressbar (1.13.0)
41-
standard (1.28.2)
44+
standard (1.39.2)
4245
language_server-protocol (~> 3.17.0.2)
4346
lint_roller (~> 1.0)
44-
rubocop (~> 1.50.2)
47+
rubocop (~> 1.64.0)
4548
standard-custom (~> 1.0.0)
46-
standard-performance (~> 1.0.1)
47-
standard-custom (1.0.0)
49+
standard-performance (~> 1.4)
50+
standard-custom (1.0.2)
4851
lint_roller (~> 1.0)
49-
standard-performance (1.0.1)
50-
lint_roller (~> 1.0)
51-
rubocop-performance (~> 1.16.0)
52+
rubocop (~> 1.50)
53+
standard-performance (1.4.0)
54+
lint_roller (~> 1.1)
55+
rubocop-performance (~> 1.21.0)
5256
strscan (3.1.0)
53-
unicode-display_width (2.4.2)
57+
unicode-display_width (2.5.0)
5458
zeitwerk (2.6.8)
5559

5660
PLATFORMS
5761
arm64-darwin-21
62+
arm64-darwin-23
5863
x86_64-linux
5964

6065
DEPENDENCIES

lib/ir_telemetry.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
require "zeitwerk"
44
require "bindata"
5+
require "forwardable"
56

67
loader = Zeitwerk::Loader.for_gem
78
loader.inflector.inflect "ir_telemetry" => "IRTelemetry"

0 commit comments

Comments
 (0)