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: dac6bf37c7e8207fd1b8ddf52859a01896868059a5782e8d25b935f20be3e07e
4
- data.tar.gz: e1a1650589d9d13e593f4c55ca3f7b8d8f5bb528003051c3b40d96df5cad0005
3
+ metadata.gz: 7bd6b6a1346ed5b630ee67a043672d05c5503f55fe6d104f002193140856c1b3
4
+ data.tar.gz: 80c6c476bf82f3b285974d3516f95695957a1806f616fb4de0ad5aa0d7ba2ac7
5
5
  SHA512:
6
- metadata.gz: a3edefab972000a35e2524fbaa0f754521852fdb80c312157d410ed1e8a1ca6b29c6737df084ba8a964e1466c9e6ce354ca5f5e1b59424178d94ae55fb69197f
7
- data.tar.gz: 4c8783df745eafbb4772deca724c7838627247b0198d20b8f20ba5cbb89f87e1f99dd6b1c09fbd0d1f318ee060d85f5d18206c78762fcc8ea6d5a408651c4cf1
6
+ metadata.gz: 1b6546efa373b0e0d922ef620e0bceb64047f017eabc26cdc55558f6258dd1dbd469c63a96961f8b377594d82eae0104bcfdeb19b80e4d748bf986ca96d8fd7b
7
+ data.tar.gz: 70247d05b6b0c83398307b877f27c0ddc88e88820f3efcd0e223b1f19fd052fd0ffa76c433a27f87edc55af2c28c68da6b40b4ce828553d8337a3cf172ec9314
@@ -55,8 +55,7 @@ module RuboCop
55
55
  return unless test_methods?(class_node)
56
56
  return unless parent_class_has_test_methods?(class_node)
57
57
 
58
- message = format(MSG)
59
- add_offense(class_node, message: message)
58
+ add_offense(class_node)
60
59
  end
61
60
 
62
61
  private
@@ -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
- # Prism supports parsing Ruby 3.3+.
234
- ENV['PARSER_ENGINE'] == 'parser_prism' ? 3.3 : RuboCop::TargetRuby::DEFAULT_VERSION
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
@@ -4,7 +4,7 @@ module RuboCop
4
4
  module Minitest
5
5
  # This module holds the RuboCop Minitest version information.
6
6
  module Version
7
- STRING = '0.37.1'
7
+ STRING = '0.38.0'
8
8
 
9
9
  def self.document_version
10
10
  STRING.match('\d+\.\d+').to_s
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.37.1
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-02-15 00:00:00.000000000 Z
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.72.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.72.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.37
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