Skip to content

Commit 0872d5c

Browse files
authored
Merge pull request #65 from mjankowski/sync-versions
Version and style sync across `standard-` repos
2 parents f6b3701 + 7899a45 commit 0872d5c

File tree

4 files changed

+43
-24
lines changed

4 files changed

+43
-24
lines changed

.github/workflows/test.yml

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ jobs:
1717
matrix:
1818
os: [ubuntu-latest]
1919
ruby-version:
20+
- '3.0'
2021
- '3.1'
2122
- '3.2'
2223
- '3.3'

Gemfile

+3-2
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

+31-22
Original file line numberDiff line numberDiff line change
@@ -8,59 +8,61 @@ PATH
88
GEM
99
remote: https://rubygems.org/
1010
specs:
11-
activesupport (7.2.1)
11+
activesupport (7.1.5)
1212
base64
13+
benchmark (>= 0.3)
1314
bigdecimal
14-
concurrent-ruby (~> 1.0, >= 1.3.1)
15+
concurrent-ruby (~> 1.0, >= 1.0.2)
1516
connection_pool (>= 2.2.5)
1617
drb
1718
i18n (>= 1.6, < 2)
1819
logger (>= 1.4.2)
1920
minitest (>= 5.1)
21+
mutex_m
2022
securerandom (>= 0.3)
21-
tzinfo (~> 2.0, >= 2.0.5)
23+
tzinfo (~> 2.0)
2224
ast (2.4.2)
2325
base64 (0.2.0)
26+
benchmark (0.4.0)
2427
bigdecimal (3.1.8)
2528
concurrent-ruby (1.3.4)
2629
connection_pool (2.4.1)
30+
docile (1.4.1)
2731
drb (2.2.1)
28-
i18n (1.14.5)
32+
i18n (1.14.6)
2933
concurrent-ruby (~> 1.0)
30-
json (2.7.2)
34+
json (2.8.1)
3135
language_server-protocol (3.17.0.3)
3236
lint_roller (1.1.0)
33-
logger (1.6.0)
37+
logger (1.6.1)
3438
m (1.6.2)
3539
method_source (>= 0.6.7)
3640
rake (>= 0.9.2.2)
3741
method_source (1.1.0)
3842
minitest (5.25.1)
43+
mutex_m (0.2.0)
3944
parallel (1.26.3)
40-
parser (3.3.4.2)
45+
parser (3.3.6.0)
4146
ast (~> 2.4.1)
4247
racc
4348
racc (1.8.1)
4449
rack (3.1.7)
4550
rainbow (3.1.1)
4651
rake (13.2.1)
4752
regexp_parser (2.9.2)
48-
rexml (3.3.6)
49-
strscan
50-
rubocop (1.65.1)
53+
rubocop (1.66.1)
5154
json (~> 2.3)
5255
language_server-protocol (>= 3.17.0)
5356
parallel (~> 1.10)
5457
parser (>= 3.3.0.2)
5558
rainbow (>= 2.2.2, < 4.0)
5659
regexp_parser (>= 2.4, < 3.0)
57-
rexml (>= 3.2.5, < 4.0)
58-
rubocop-ast (>= 1.31.1, < 2.0)
60+
rubocop-ast (>= 1.32.2, < 2.0)
5961
ruby-progressbar (~> 1.7)
6062
unicode-display_width (>= 2.4.0, < 3.0)
61-
rubocop-ast (1.32.1)
63+
rubocop-ast (1.34.1)
6264
parser (>= 3.3.1.0)
63-
rubocop-performance (1.21.1)
65+
rubocop-performance (1.22.1)
6466
rubocop (>= 1.48.1, < 2.0)
6567
rubocop-ast (>= 1.31.1, < 2.0)
6668
rubocop-rails (2.26.0)
@@ -70,36 +72,43 @@ GEM
7072
rubocop-ast (>= 1.31.1, < 2.0)
7173
ruby-progressbar (1.13.0)
7274
securerandom (0.3.1)
73-
standard (1.40.0)
75+
simplecov (0.22.0)
76+
docile (~> 1.1)
77+
simplecov-html (~> 0.11)
78+
simplecov_json_formatter (~> 0.1)
79+
simplecov-html (0.13.1)
80+
simplecov_json_formatter (0.1.4)
81+
standard (1.41.1)
7482
language_server-protocol (~> 3.17.0.2)
7583
lint_roller (~> 1.0)
76-
rubocop (~> 1.65.0)
84+
rubocop (~> 1.66.0)
7785
standard-custom (~> 1.0.0)
78-
standard-performance (~> 1.4)
86+
standard-performance (~> 1.5)
7987
standard-custom (1.0.2)
8088
lint_roller (~> 1.0)
8189
rubocop (~> 1.50)
82-
standard-performance (1.4.0)
90+
standard-performance (1.5.0)
8391
lint_roller (~> 1.1)
84-
rubocop-performance (~> 1.21.0)
85-
strscan (3.1.0)
92+
rubocop-performance (~> 1.22.0)
8693
tzinfo (2.0.6)
8794
concurrent-ruby (~> 1.0)
88-
unicode-display_width (2.5.0)
95+
unicode-display_width (2.6.0)
8996

9097
PLATFORMS
9198
arm64-darwin-20
9299
arm64-darwin-21
93100
arm64-darwin-22
94101
arm64-darwin-23
102+
arm64-darwin-24
95103
x86_64-linux
96104

97105
DEPENDENCIES
98106
m
99107
minitest
100108
rake
109+
simplecov
101110
standard
102111
standard-rails!
103112

104113
BUNDLED WITH
105-
2.5.17
114+
2.5.23

test/test_helper.rb

+8
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/rails"
311

412
require "minitest/autorun"

0 commit comments

Comments
 (0)