renuocop 0.8.2 → 0.8.4

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: a2ec9d0a7d6dfeb4c4beaebe7a42dfff4188ce03c0d0a1e872466fd1fa70d62c
4
- data.tar.gz: b133f56fcbdab3648ea4e2ca4516faac5039d4884840397ef3d67dd060d80273
3
+ metadata.gz: d744339a26053c86751a76cfd1764549b4963b983fa72406eff9fd5cdc8b1f0c
4
+ data.tar.gz: 3ee1b3ebe3944f7e8f08df0a8dd426f3557e2c9a2b295416a3ba87837226acee
5
5
  SHA512:
6
- metadata.gz: b2936a313436b7d32b56cb6e39a1f0c7be96bbd544f863a244a523379878ad152021a15a753c2836c2f35c3a1ecc1dcb4c64cbd6b599374fdb49209649681bb2
7
- data.tar.gz: 8451cd0cfd15b623872e574c9da9031b0ee521bf9187039d1eb50ecd447d222b31750afb3bb33ae374e003ffd75fb039e4eef5186f711d46b1c35bb1890a162c
6
+ metadata.gz: 14e828d983798d38d554b8a9c11c851bff2c812fc55e2838495a7084345a60e55490ed0d1a4b533cdcf5ed64dc94d179141a307928fd94d4fac7cea422c8dd2c
7
+ data.tar.gz: 63c727d9ce50d0801e3a39a81a10ad5f2e0623e70c0262f7e70f86c62d3ce954bd256303f40b97020e383bc1cb8afc11528ece9db688eea91ed6d9798b8b8df1
data/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ## [0.8.4]
2
+ - More rules disabled
3
+
4
+ ## [0.8.3]
5
+ - Disable NegationBeValid cop
6
+
1
7
  ## [0.8.2]
2
8
  - Load `rubocop-rspec_rails` plugin by default
3
9
 
data/config/base.yml CHANGED
@@ -214,6 +214,7 @@ Metrics/AbcSize:
214
214
  Enabled: true
215
215
  Exclude:
216
216
  - 'db/migrate/*'
217
+ - 'spec/system/**/*.rb'
217
218
 
218
219
  Metrics/BlockLength:
219
220
  Enabled: true
@@ -240,6 +241,8 @@ Metrics/CyclomaticComplexity:
240
241
 
241
242
  Metrics/MethodLength:
242
243
  Enabled: true
244
+ Exclude:
245
+ - 'spec/system/**/*.rb'
243
246
  CountAsOne:
244
247
  - array
245
248
  - hash
@@ -380,10 +383,7 @@ RSpec/DescribedClass:
380
383
  SkipBlocks: true
381
384
 
382
385
  RSpec/ExampleLength:
383
- Exclude:
384
- - 'spec/system/**/*'
385
- - 'spec/requests/**/*'
386
- - 'spec/views/**/*'
386
+ Enabled: false
387
387
 
388
388
  RSpec/InstanceVariable:
389
389
  Exclude:
@@ -407,6 +407,9 @@ RSpec/SortMetadata:
407
407
  RSpec/VerifiedDoubles:
408
408
  Enabled: false
409
409
 
410
+ RSpecRails/NegationBeValid:
411
+ Enabled: false
412
+
410
413
  Capybara/ClickLinkOrButtonStyle:
411
414
  Enabled: false
412
415
 
@@ -435,6 +438,9 @@ Rails/SkipsModelValidations:
435
438
  - 'spec/**/*.rb'
436
439
  - 'db/migrate/*.rb'
437
440
 
441
+ Rails/FindByOrAssignmentMemoization:
442
+ Enabled: false
443
+
438
444
  Security/IoMethods:
439
445
  Enabled: true
440
446
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Renuocop
4
- VERSION = "0.8.2"
4
+ VERSION = "0.8.4"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: renuocop
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.2
4
+ version: 0.8.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alessandro Rodi
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2025-03-24 00:00:00.000000000 Z
11
+ date: 2025-09-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rubocop
@@ -170,7 +170,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
170
170
  - !ruby/object:Gem::Version
171
171
  version: '0'
172
172
  requirements: []
173
- rubygems_version: 3.5.11
173
+ rubygems_version: 3.3.27
174
174
  signing_key:
175
175
  specification_version: 4
176
176
  summary: Renuo default style guide, linter, and formatter.