Skip to content

Commit 02353d1

Browse files
committed
WIP
1 parent 1a643b7 commit 02353d1

File tree

4 files changed

+44
-3
lines changed

4 files changed

+44
-3
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,13 @@ jobs:
2121
uses: ruby/setup-ruby@v1
2222
with:
2323
ruby-version: ${{ matrix.ruby-version }}
24-
bundler-cache: true
24+
bundler-cache: false
25+
26+
- name: Configure Bundler
27+
run: |
28+
bundle config set --local frozen false
29+
bundle config set --local deployment false
30+
bundle config set --local path vendor/bundle
2531
2632
- name: Install dependencies
2733
run: |
@@ -58,12 +64,13 @@ jobs:
5864
uses: ruby/setup-ruby@v1
5965
with:
6066
ruby-version: '3.3.6'
61-
bundler-cache: true
67+
bundler-cache: false
6268

6369
- name: Configure Bundler
6470
run: |
6571
bundle config set --local frozen false
6672
bundle config set --local deployment false
73+
bundle config set --local path vendor/bundle
6774
6875
- name: Install dependencies
6976
run: |

.github/workflows/release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ jobs:
6262
run: |
6363
bundle config set --local frozen false
6464
bundle config set --local deployment false
65+
bundle config set --local path vendor/bundle
6566
6667
- name: Install build dependencies
6768
run: |

Gemfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ gemspec
44

55
group :development, :test do
66
gem 'minitest', '~> 5.0'
7-
gem 'minitest-pride', '~> 0.3'
87
gem 'rake', '~> 13.0'
98
end
109

Gemfile.lock

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ PATH
88
GEM
99
remote: https://rubygems.org/
1010
specs:
11+
ast (2.4.3)
1112
bigdecimal (3.2.2)
1213
google-protobuf (4.32.0)
1314
bigdecimal
@@ -29,6 +30,10 @@ GEM
2930
rake (>= 13)
3031
googleapis-common-protos-types (1.20.0)
3132
google-protobuf (>= 3.18, < 5.a)
33+
json (2.13.2)
34+
language_server-protocol (3.17.0.5)
35+
lint_roller (1.1.0)
36+
minitest (5.25.5)
3237
opentelemetry-api (1.6.0)
3338
opentelemetry-common (0.22.0)
3439
opentelemetry-api (~> 1.0)
@@ -48,7 +53,33 @@ GEM
4853
opentelemetry-semantic_conventions
4954
opentelemetry-semantic_conventions (1.11.0)
5055
opentelemetry-api (~> 1.0)
56+
parallel (1.27.0)
57+
parser (3.3.9.0)
58+
ast (~> 2.4.1)
59+
racc
60+
prism (1.4.0)
61+
racc (1.8.1)
62+
rainbow (3.1.1)
5163
rake (13.3.0)
64+
regexp_parser (2.11.2)
65+
rubocop (1.80.1)
66+
json (~> 2.3)
67+
language_server-protocol (~> 3.17.0.2)
68+
lint_roller (~> 1.1.0)
69+
parallel (~> 1.10)
70+
parser (>= 3.3.0.2)
71+
rainbow (>= 2.2.2, < 4.0)
72+
regexp_parser (>= 2.9.3, < 3.0)
73+
rubocop-ast (>= 1.46.0, < 2.0)
74+
ruby-progressbar (~> 1.7)
75+
unicode-display_width (>= 2.4.0, < 4.0)
76+
rubocop-ast (1.46.0)
77+
parser (>= 3.3.7.2)
78+
prism (~> 1.4)
79+
ruby-progressbar (1.13.0)
80+
unicode-display_width (3.1.5)
81+
unicode-emoji (~> 4.0, >= 4.0.4)
82+
unicode-emoji (4.0.4)
5283

5384
PLATFORMS
5485
aarch64-linux
@@ -59,7 +90,10 @@ PLATFORMS
5990
x86_64-linux
6091

6192
DEPENDENCIES
93+
minitest (~> 5.0)
6294
multiplayer-session-recorder!
95+
rake (~> 13.0)
96+
rubocop (~> 1.0)
6397

6498
BUNDLED WITH
6599
2.5.23

0 commit comments

Comments
 (0)