makandra-rubocop 16.1.0 → 16.2.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: 4e6f2eff9125ffb75d3347586d601b815e838f850ffbcd9f432c17d63be06285
4
- data.tar.gz: 4417ece79d85430aacb2e747c8fb43d7f27feba9dfc381f70287159157e4ccf5
3
+ metadata.gz: 4cc499b82fb2ec83057d4e2ee085032777c15da4c22b7a58d079416cfd7b741c
4
+ data.tar.gz: d1ef7af90d18846b41f24c3dc7a4b984217b37ca2b4cdf79efbe40c288821b43
5
5
  SHA512:
6
- metadata.gz: 7187a6d0c3cb6a52f6f5ace9e2d34ef60037e51219308877bde3f69d5348014e65311417a5e048a4b29cc5895844baa228e3b393104630ac974cc4ea2046c536
7
- data.tar.gz: c7ffdd9227a9a652b9ea647126c89f0fba2f443d19f50fd7bc1b1288298f55b26d5ceb7d7b24ed67a64185997029220d6e23d891455e61bd9441a68fb6768d7a
6
+ metadata.gz: f7ca245dfa2b36540742c059005018cae6c62c4daf03eac6d8c58b85344ea7fe18fa26bbe07055444869fec0096f72d61d1009549339228c7307bdd7f3c819ad
7
+ data.tar.gz: 555d4bfc1a8ee2fbc56d64cee50094d3146575ced30cc907281f13c5f3bab54c0523353a43446d623761d04ed2b21e6e5abfe1dc96fe2dca4b977e371d22465f
data/CHANGELOG.md CHANGED
@@ -9,6 +9,12 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html
9
9
  ### Compatible changes
10
10
 
11
11
 
12
+ ## 16.2.0 - 2025-07-22
13
+
14
+ ### Compatible changes
15
+ - Disable RSpec/DescribedClass (#76)
16
+ - Disable RSpec/MessageSpies (#75)
17
+
12
18
 
13
19
  ## 16.1.0 -2025-07-09
14
20
 
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- makandra-rubocop (16.1.0)
4
+ makandra-rubocop (16.2.0)
5
5
  rubocop (~> 1.70.0)
6
6
  rubocop-capybara (~> 2.20.0)
7
7
  rubocop-factory_bot (~> 2.25.1)
@@ -34,7 +34,7 @@ GEM
34
34
  drb (2.2.3)
35
35
  i18n (1.14.7)
36
36
  concurrent-ruby (~> 1.0)
37
- json (2.12.2)
37
+ json (2.13.0)
38
38
  language_server-protocol (3.17.0.5)
39
39
  logger (1.7.0)
40
40
  minitest (5.25.5)
@@ -59,7 +59,7 @@ GEM
59
59
  rubocop-ast (>= 1.36.2, < 2.0)
60
60
  ruby-progressbar (~> 1.7)
61
61
  unicode-display_width (>= 2.4.0, < 4.0)
62
- rubocop-ast (1.45.1)
62
+ rubocop-ast (1.46.0)
63
63
  parser (>= 3.3.7.2)
64
64
  prism (~> 1.4)
65
65
  rubocop-capybara (2.20.0)
data/config/ext/rspec.yml CHANGED
@@ -273,7 +273,7 @@ RSpec/DescribeSymbol:
273
273
 
274
274
  RSpec/DescribedClass:
275
275
  Description: Checks that tests use `described_class`.
276
- Enabled: true
276
+ Enabled: false # as discussed in https://github.com/makandra/makandra-rubocop/issues/76
277
277
  SkipBlocks: false
278
278
  EnforcedStyle: described_class
279
279
  SupportedStyles:
@@ -621,7 +621,7 @@ RSpec/MessageExpectation:
621
621
 
622
622
  RSpec/MessageSpies:
623
623
  Description: Checks that message expectations are set using spies.
624
- Enabled: true
624
+ Enabled: false # as discussed in https://github.com/makandra/makandra-rubocop/issues/75
625
625
  EnforcedStyle: receive # We usually use receive as it is defined before the expectation line and not after
626
626
  SupportedStyles:
627
627
  - have_received
@@ -1,3 +1,3 @@
1
1
  module MakandraRubocop
2
- VERSION = '16.1.0'.freeze
2
+ VERSION = '16.2.0'.freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: makandra-rubocop
3
3
  version: !ruby/object:Gem::Version
4
- version: 16.1.0
4
+ version: 16.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Arne Hartherz
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: exe
11
11
  cert_chain: []
12
- date: 2025-07-09 00:00:00.000000000 Z
12
+ date: 2025-07-22 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rubocop