gemwork 0.7.23 → 0.7.24

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: 763b3f4039543fc404b743c7ba4ebde1f9cefaddf1ef61329bd7b2c7c15cda70
4
- data.tar.gz: 2f47a6713ca400204ae08cd7a22323878055148958fb11cc41aba376233c6aca
3
+ metadata.gz: 677c8bf487808b9a809cfb83be3e28198c1e871fbe4b913fb1c05739dd21be82
4
+ data.tar.gz: 148c69665799c1b9dfcd08e826a27a6b4eec650250c4acd2663521679ad66f2a
5
5
  SHA512:
6
- metadata.gz: 2815065e6f763023648b87de2d9aeb9dd5dfd08efac39d5496e91e8938a51d3d3a204b8ca99edba867ae239dd4c0bc8c496fbb2858b701a9e9d89b1890077be8
7
- data.tar.gz: 398dfb10f465cc82e6be6988dbc76fe6e16a05a4ce23fb10a14f141bd16755e2486a1ac89836af0309b0dd8870eb84c68e347df4f55e52a77d2f750b204bb976
6
+ metadata.gz: afa9e4ef265f6a36abfcec918244c9ad72c63c89868d995289a2ef4e6054476a2c8e1783eaffa04e49b1d222d0452c830014cbe523138d194cae1d4da9de2bdf
7
+ data.tar.gz: 2368d7ae18f0686cacb7bf517291216dbaa422105c306435ce86adf221e0fb58d8ef052fa0af8e022eefa1d9c9a1b3c179ca81b573078932cc41f7e7b3e63575
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [0.7.24] - 2026-04-26
4
+
5
+ - Rubocop: Update Layout/LineLength max: 80 -> 100
6
+
3
7
  ## [0.7.23] - 2026-04-26
4
8
 
5
9
  - Revert minimum Ruby version from 3.2 -> 3.1
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Gemwork
4
- VERSION = "0.7.23"
4
+ VERSION = "0.7.24"
5
5
  public_constant :VERSION
6
6
  end
@@ -78,7 +78,9 @@ Layout/FirstMethodArgumentLineBreak:
78
78
  - safe_join
79
79
 
80
80
  Layout/LineLength:
81
- # Max 80 chars. See: https://rubystyle.guide/#max-line-length
81
+ # Soft limit: 80 characters (use a "ruler" guide!). Hard limit: 100 chars.
82
+ # See: https://rubystyle.guide/#max-line-length
83
+ Max: 100
82
84
  Exclude:
83
85
  - Gemfile
84
86
  - config/environments/*.rb
@@ -120,8 +120,9 @@ Layout/LineContinuationSpacing:
120
120
  EnforcedStyle: no_space
121
121
 
122
122
  Layout/LineLength:
123
- # Max 80 chars. See: https://rubystyle.guide/#max-line-length
124
- Max: 80
123
+ # Soft limit: 80 characters (use a "ruler" guide!). Hard limit: 100 chars.
124
+ # See: https://rubystyle.guide/#max-line-length
125
+ Max: 100
125
126
  Exclude:
126
127
  - "*.gemspec"
127
128
  AllowedPatterns:
@@ -6,6 +6,8 @@ Naming/BlockParameterName:
6
6
  ForbiddenNames:
7
7
  - i # Index
8
8
  - x # ? (Too arbitrary)
9
+ Exclude:
10
+ - "*.gemspec"
9
11
 
10
12
  Naming/MethodParameterName:
11
13
  AllowedNames:
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gemwork
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.23
4
+ version: 0.7.24
5
5
  platform: ruby
6
6
  authors:
7
7
  - Paul DobbinSchmaltz