rubocop-minitest 0.37.1 → 0.38.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7bd6b6a1346ed5b630ee67a043672d05c5503f55fe6d104f002193140856c1b3
|
4
|
+
data.tar.gz: 80c6c476bf82f3b285974d3516f95695957a1806f616fb4de0ad5aa0d7ba2ac7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1b6546efa373b0e0d922ef620e0bceb64047f017eabc26cdc55558f6258dd1dbd469c63a96961f8b377594d82eae0104bcfdeb19b80e4d748bf986ca96d8fd7b
|
7
|
+
data.tar.gz: 70247d05b6b0c83398307b877f27c0ddc88e88820f3efcd0e223b1f19fd052fd0ffa76c433a27f87edc55af2c28c68da6b40b4ce828553d8337a3cf172ec9314
|
@@ -65,7 +65,7 @@ module RuboCop
|
|
65
65
|
assertions_count_in_branches(node.branches)
|
66
66
|
when :rescue
|
67
67
|
assertions_count(node.body) + assertions_count_in_branches(node.branches)
|
68
|
-
when :block, :numblock
|
68
|
+
when :block, :numblock, :itblock
|
69
69
|
assertions_count(node.body)
|
70
70
|
when *RuboCop::AST::Node::ASSIGNMENTS
|
71
71
|
assertions_count_in_assignment(node)
|
@@ -230,8 +230,8 @@ module RuboCop
|
|
230
230
|
end
|
231
231
|
|
232
232
|
def ruby_version
|
233
|
-
#
|
234
|
-
ENV['PARSER_ENGINE'] == 'parser_prism' ? 3.
|
233
|
+
# Prism is the default backend parser for Ruby 3.4+.
|
234
|
+
ENV['PARSER_ENGINE'] == 'parser_prism' ? 3.4 : RuboCop::TargetRuby::DEFAULT_VERSION
|
235
235
|
end
|
236
236
|
|
237
237
|
def parser_engine
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rubocop-minitest
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.38.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Bozhidar Batsov
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: exe
|
12
12
|
cert_chain: []
|
13
|
-
date: 2025-
|
13
|
+
date: 2025-04-01 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: lint_roller
|
@@ -32,7 +32,7 @@ dependencies:
|
|
32
32
|
requirements:
|
33
33
|
- - ">="
|
34
34
|
- !ruby/object:Gem::Version
|
35
|
-
version: 1.
|
35
|
+
version: 1.75.0
|
36
36
|
- - "<"
|
37
37
|
- !ruby/object:Gem::Version
|
38
38
|
version: '2.0'
|
@@ -42,7 +42,7 @@ dependencies:
|
|
42
42
|
requirements:
|
43
43
|
- - ">="
|
44
44
|
- !ruby/object:Gem::Version
|
45
|
-
version: 1.
|
45
|
+
version: 1.75.0
|
46
46
|
- - "<"
|
47
47
|
- !ruby/object:Gem::Version
|
48
48
|
version: '2.0'
|
@@ -154,7 +154,7 @@ metadata:
|
|
154
154
|
homepage_uri: https://docs.rubocop.org/rubocop-minitest/
|
155
155
|
changelog_uri: https://github.com/rubocop/rubocop-minitest/blob/master/CHANGELOG.md
|
156
156
|
source_code_uri: https://github.com/rubocop/rubocop-minitest
|
157
|
-
documentation_uri: https://docs.rubocop.org/rubocop-minitest/0.
|
157
|
+
documentation_uri: https://docs.rubocop.org/rubocop-minitest/0.38
|
158
158
|
bug_tracker_uri: https://github.com/rubocop/rubocop-minitest/issues
|
159
159
|
rubygems_mfa_required: 'true'
|
160
160
|
default_lint_roller_plugin: RuboCop::Minitest::Plugin
|