Skip to content

Commit 0df9357

Browse files
authored
Merge pull request #29 from mjankowski/sync-versions
Version and style sync across `standard-` repos
2 parents cc1ecda + bf932f1 commit 0df9357

File tree

4 files changed

+36
-23
lines changed

4 files changed

+36
-23
lines changed

.github/workflows/test.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,5 @@ jobs:
3131
with:
3232
ruby-version: ${{ matrix.ruby-version }}
3333
bundler-cache: true
34-
- name: Install dependencies
35-
run: bundle install
3634
- name: Run tests for Ruby ${{ matrix.ruby-version }} on ${{ matrix.os }}
3735
run: bundle exec rake

Gemfile

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

33
gemspec
4-
gem "rake"
5-
gem "minitest"
6-
gem "standard"
74
gem "m"
5+
gem "minitest"
86
gem "mocktail"
7+
gem "rake"
8+
gem "simplecov"
9+
gem "standard"

Gemfile.lock

Lines changed: 24 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -9,55 +9,60 @@ GEM
99
remote: https://rubygems.org/
1010
specs:
1111
ast (2.4.2)
12-
json (2.7.1)
12+
docile (1.4.1)
13+
json (2.8.1)
1314
language_server-protocol (3.17.0.3)
1415
lint_roller (1.1.0)
1516
m (1.6.1)
1617
method_source (>= 0.6.7)
1718
rake (>= 0.9.2.2)
1819
method_source (1.0.0)
19-
minitest (5.19.0)
20+
minitest (5.25.1)
2021
mocktail (2.0.0)
2122
sorbet-eraser (~> 0.3.1)
2223
sorbet-runtime (~> 0.5.9204)
23-
parallel (1.24.0)
24-
parser (3.3.1.0)
24+
parallel (1.26.3)
25+
parser (3.3.6.0)
2526
ast (~> 2.4.1)
2627
racc
27-
racc (1.7.3)
28+
racc (1.8.1)
2829
rainbow (3.1.1)
2930
rake (13.0.6)
30-
regexp_parser (2.9.0)
31-
rexml (3.2.6)
32-
rubocop (1.59.0)
31+
regexp_parser (2.9.2)
32+
rubocop (1.66.1)
3333
json (~> 2.3)
3434
language_server-protocol (>= 3.17.0)
3535
parallel (~> 1.10)
36-
parser (>= 3.2.2.4)
36+
parser (>= 3.3.0.2)
3737
rainbow (>= 2.2.2, < 4.0)
38-
regexp_parser (>= 1.8, < 3.0)
39-
rexml (>= 3.2.5, < 4.0)
40-
rubocop-ast (>= 1.30.0, < 2.0)
38+
regexp_parser (>= 2.4, < 3.0)
39+
rubocop-ast (>= 1.32.2, < 2.0)
4140
ruby-progressbar (~> 1.7)
4241
unicode-display_width (>= 2.4.0, < 3.0)
43-
rubocop-ast (1.31.3)
42+
rubocop-ast (1.34.1)
4443
parser (>= 3.3.1.0)
4544
rubocop-performance (1.22.1)
4645
rubocop (>= 1.48.1, < 2.0)
4746
rubocop-ast (>= 1.31.1, < 2.0)
4847
ruby-progressbar (1.13.0)
48+
simplecov (0.22.0)
49+
docile (~> 1.1)
50+
simplecov-html (~> 0.11)
51+
simplecov_json_formatter (~> 0.1)
52+
simplecov-html (0.13.1)
53+
simplecov_json_formatter (0.1.4)
4954
sorbet-eraser (0.3.1)
5055
sorbet-runtime (0.5.11435)
51-
standard (1.33.0)
56+
standard (1.41.1)
5257
language_server-protocol (~> 3.17.0.2)
5358
lint_roller (~> 1.0)
54-
rubocop (~> 1.59.0)
59+
rubocop (~> 1.66.0)
5560
standard-custom (~> 1.0.0)
56-
standard-performance (~> 1.3)
61+
standard-performance (~> 1.5)
5762
standard-custom (1.0.2)
5863
lint_roller (~> 1.0)
5964
rubocop (~> 1.50)
60-
unicode-display_width (2.5.0)
65+
unicode-display_width (2.6.0)
6166

6267
PLATFORMS
6368
arm64-darwin-22
@@ -69,8 +74,9 @@ DEPENDENCIES
6974
minitest
7075
mocktail
7176
rake
77+
simplecov
7278
standard
7379
standard-performance!
7480

7581
BUNDLED WITH
76-
2.4.12
82+
2.5.23

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/performance"
311

412
require "minitest/autorun"

0 commit comments

Comments
 (0)