Skip to content

Commit 9d229d2

Browse files
authored
Merge pull request #16 from mjankowski/sync-versions
Version and style sync across `standard-` repos
2 parents 5ed1b15 + 1ce4668 commit 9d229d2

File tree

4 files changed

+49
-30
lines changed

4 files changed

+49
-30
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
runs-on: ${{ matrix.os }}
2121

2222
steps:
23-
- uses: actions/checkout@v3
23+
- uses: actions/checkout@v4
2424
- name: Set up Ruby ${{ matrix.ruby-version }}
2525
uses: ruby/setup-ruby@v1
2626
with:

Gemfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
source "https://rubygems.org"
22

33
gemspec
4-
gem "rake"
4+
gem "m"
55
gem "minitest"
6+
gem "rake"
7+
gem "simplecov"
68
gem "standard"
7-
gem "m"

Gemfile.lock

Lines changed: 37 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -9,53 +9,62 @@ GEM
99
remote: https://rubygems.org/
1010
specs:
1111
ast (2.4.2)
12-
json (2.6.3)
12+
docile (1.4.1)
13+
json (2.8.2)
1314
language_server-protocol (3.17.0.3)
1415
lint_roller (1.1.0)
15-
m (1.6.1)
16+
m (1.6.2)
1617
method_source (>= 0.6.7)
1718
rake (>= 0.9.2.2)
18-
method_source (1.0.0)
19-
minitest (5.18.1)
20-
parallel (1.23.0)
21-
parser (3.2.2.3)
19+
method_source (1.1.0)
20+
minitest (5.25.1)
21+
parallel (1.26.3)
22+
parser (3.3.6.0)
2223
ast (~> 2.4.1)
2324
racc
24-
racc (1.7.1)
25+
racc (1.8.1)
2526
rainbow (3.1.1)
26-
rake (13.0.6)
27-
regexp_parser (2.8.1)
28-
rexml (3.2.5)
29-
rubocop (1.52.1)
27+
rake (13.2.1)
28+
regexp_parser (2.9.2)
29+
rexml (3.3.9)
30+
rubocop (1.64.1)
3031
json (~> 2.3)
32+
language_server-protocol (>= 3.17.0)
3133
parallel (~> 1.10)
32-
parser (>= 3.2.2.3)
34+
parser (>= 3.3.0.2)
3335
rainbow (>= 2.2.2, < 4.0)
3436
regexp_parser (>= 1.8, < 3.0)
3537
rexml (>= 3.2.5, < 4.0)
36-
rubocop-ast (>= 1.28.0, < 2.0)
38+
rubocop-ast (>= 1.31.1, < 2.0)
3739
ruby-progressbar (~> 1.7)
3840
unicode-display_width (>= 2.4.0, < 3.0)
39-
rubocop-ast (1.29.0)
40-
parser (>= 3.2.1.0)
41-
rubocop-performance (1.18.0)
42-
rubocop (>= 1.7.0, < 2.0)
43-
rubocop-ast (>= 0.4.0)
41+
rubocop-ast (1.36.1)
42+
parser (>= 3.3.1.0)
43+
rubocop-performance (1.21.1)
44+
rubocop (>= 1.48.1, < 2.0)
45+
rubocop-ast (>= 1.31.1, < 2.0)
4446
rubocop-sorbet (0.7.0)
4547
rubocop (>= 0.90.0)
4648
ruby-progressbar (1.13.0)
47-
standard (1.30.0)
49+
simplecov (0.22.0)
50+
docile (~> 1.1)
51+
simplecov-html (~> 0.11)
52+
simplecov_json_formatter (~> 0.1)
53+
simplecov-html (0.13.1)
54+
simplecov_json_formatter (0.1.4)
55+
standard (1.37.0)
4856
language_server-protocol (~> 3.17.0.2)
4957
lint_roller (~> 1.0)
50-
rubocop (~> 1.52.0)
58+
rubocop (~> 1.64.0)
5159
standard-custom (~> 1.0.0)
52-
standard-performance (~> 1.1.0)
53-
standard-custom (1.0.1)
60+
standard-performance (~> 1.4)
61+
standard-custom (1.0.2)
5462
lint_roller (~> 1.0)
55-
standard-performance (1.1.0)
56-
lint_roller (~> 1.0)
57-
rubocop-performance (~> 1.18.0)
58-
unicode-display_width (2.4.2)
63+
rubocop (~> 1.50)
64+
standard-performance (1.4.0)
65+
lint_roller (~> 1.1)
66+
rubocop-performance (~> 1.21.0)
67+
unicode-display_width (2.6.0)
5968

6069
PLATFORMS
6170
arm64-darwin-22
@@ -66,8 +75,9 @@ DEPENDENCIES
6675
m
6776
minitest
6877
rake
78+
simplecov
6979
standard
7080
standard-sorbet!
7181

7282
BUNDLED WITH
73-
2.4.10
83+
2.4.22

test/test_helper.rb

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
11
$LOAD_PATH.unshift File.expand_path("../lib", __dir__)
2+
begin
3+
require "simplecov"
4+
SimpleCov.start do
5+
load_profile "test_frameworks"
6+
end
7+
rescue LoadError
8+
end
9+
210
require "standard/sorbet"
311

412
require "minitest/autorun"

0 commit comments

Comments
 (0)