house_style 4.0.3 → 4.0.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: ca86794ba2618958c4a4ab404890a6d8835918e365bbd573138020ea1484c2ed
4
- data.tar.gz: 3478141ea2646cc0f93de9796f2128b385bf2da527160e385992de9a886f5148
3
+ metadata.gz: d7d486909e392dafd10a890e1adde07b917cc40517a2066fcca31fb52410c817
4
+ data.tar.gz: '048057b7acf64971789b8f802af691412e6f5aaff08989ecb1b474e6f445b03e'
5
5
  SHA512:
6
- metadata.gz: aa270c8453263f658cc3db84779e451f1b49f1165085603d7c12e14b4f85b652d56460df3c9c30423fe4bdd3496c6bf6d2816f91d130c518090bd976e1642956
7
- data.tar.gz: 218173a2af4b9a03730478240b741896938f2d2889668f22cb3e320691fa0902728854519dde5b343c2462a94affadb5df374eb286705243ae55fe42639606b9
6
+ metadata.gz: e897e5032089371b2608febcf3996c97694ab7907adde2bb83352840e2c06a6031a37e9eae1b320f47506b83748d25ec5234de9fbae15f00e2c7ff2844c4ebd2
7
+ data.tar.gz: ab866d11183ad3ccd7128cd81aa2dd455c18280be1377ab479dc5f710c598e1633e15c6fea6f5f41af02dc6a163d9b7c09c3b821c73d6dacd6aaa0107406dd59
data/CHANGELOG.md CHANGED
@@ -2,6 +2,11 @@
2
2
 
3
3
  ## CURRENT
4
4
 
5
+ ## 4.0.4
6
+
7
+ ### Changes
8
+ - Disable `Style/IfUnlessModifier`. rubocop 1.89.0 centralised the modifier line-fit check so modifier cops now defer to `Layout/LineLength`'s exemption ladder (rubocop/rubocop#15493). Our `Layout/LineLength` `AllowedPatterns` exempt any line containing a quoted string, so the cop read almost every line as unbounded and demanded modifier form for conditionals that collapse to between 121 and 247 characters. This broke `rubocop` across eight repos at once. The cop stays off until `AllowedPatterns` is narrowed to match genuinely long strings rather than any line that contains one.
9
+
5
10
  ## 4.0.3
6
11
 
7
12
  ### Changes
data/house_style.gemspec CHANGED
@@ -3,7 +3,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
3
3
 
4
4
  Gem::Specification.new do |spec|
5
5
  spec.name = 'house_style'
6
- spec.version = '4.0.3'
6
+ spec.version = '4.0.4'
7
7
  spec.authors = ['Altmetric', 'Scott Matthewman']
8
8
  spec.email = ['engineering@altmetric.com', 'scott.matthewman@gmail.com']
9
9
 
data/ruby/rubocop.yml CHANGED
@@ -538,7 +538,13 @@ Style/IdenticalConditionalBranches:
538
538
  Style/IfInsideElse:
539
539
  Enabled: true
540
540
  Style/IfUnlessModifier:
541
- Enabled: true
541
+ # Off since rubocop 1.89, which made modifier cops defer to
542
+ # Layout/LineLength's exemption ladder (rubocop/rubocop#15493). Our
543
+ # AllowedPatterns exempt any line holding a quoted string, so the cop treats
544
+ # almost every line as unbounded and demands modifier form for conditionals
545
+ # that collapse to between 121 and 247 characters. Re-enable once
546
+ # AllowedPatterns matches genuinely long strings, not any line containing one.
547
+ Enabled: false
542
548
  Style/IfUnlessModifierOfIfUnless:
543
549
  Enabled: true
544
550
  Style/IfWithBooleanLiteralBranches:
metadata CHANGED
@@ -1,15 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: house_style
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.0.3
4
+ version: 4.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Altmetric
8
8
  - Scott Matthewman
9
- autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2026-07-28 00:00:00.000000000 Z
11
+ date: 1980-01-02 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: rubocop
@@ -166,7 +165,6 @@ homepage: https://github.com/altmetric/house_style
166
165
  licenses:
167
166
  - MIT
168
167
  metadata: {}
169
- post_install_message:
170
168
  rdoc_options: []
171
169
  require_paths:
172
170
  - lib
@@ -181,8 +179,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
181
179
  - !ruby/object:Gem::Version
182
180
  version: '0'
183
181
  requirements: []
184
- rubygems_version: 3.4.10
185
- signing_key:
182
+ rubygems_version: 3.6.9
186
183
  specification_version: 4
187
184
  summary: A centralised store of house style rules
188
185
  test_files: []