gemwork 0.7.22 → 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: 9b5a2126cb36e2888966c286fb921ba2ce7d58c219846e0f7110f0fb19147463
4
- data.tar.gz: 450f4d526499f10d177576e83217f58190b6866576623b09a97089c82f906fb1
3
+ metadata.gz: 677c8bf487808b9a809cfb83be3e28198c1e871fbe4b913fb1c05739dd21be82
4
+ data.tar.gz: 148c69665799c1b9dfcd08e826a27a6b4eec650250c4acd2663521679ad66f2a
5
5
  SHA512:
6
- metadata.gz: bd056e7cb7a911da9a56fbbc2cc7327a79f2210c9f63dfaede37072d718761560b1b17ac5517651630a15b060ac7365de47a60493c6b90ad5aea4768d574a325
7
- data.tar.gz: 29face0701ef9cccc049958853e8bcf6be4f744845be33227c05975f46d7ee15207f45422105dfb75270f10f72efd1d99199e863e57cd072988bdd818fa828d2
6
+ metadata.gz: afa9e4ef265f6a36abfcec918244c9ad72c63c89868d995289a2ef4e6054476a2c8e1783eaffa04e49b1d222d0452c830014cbe523138d194cae1d4da9de2bdf
7
+ data.tar.gz: 2368d7ae18f0686cacb7bf517291216dbaa422105c306435ce86adf221e0fb58d8ef052fa0af8e022eefa1d9c9a1b3c179ca81b573078932cc41f7e7b3e63575
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [0.7.24] - 2026-04-26
4
+
5
+ - Rubocop: Update Layout/LineLength max: 80 -> 100
6
+
7
+ ## [0.7.23] - 2026-04-26
8
+
9
+ - Revert minimum Ruby version from 3.2 -> 3.1
10
+
3
11
  ## [0.7.21] - 2025-10-12
4
12
 
5
13
  - Exclude BaseControllers from Rails/ApplicationController
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Gemwork
4
- VERSION = "0.7.22"
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:
@@ -58,6 +58,10 @@ Style/ClassAndModuleChildren:
58
58
  # Combine constant definitions as much as possible. e.g. `class Foo::Bar`.
59
59
  EnforcedStyle: compact
60
60
 
61
+ Style/ClassMethodsDefinitions:
62
+ # Prefer to define class methods like: `def self.<class_method_name>`.
63
+ Enabled: true
64
+
61
65
  Style/CollectionMethods:
62
66
  # Enforce the use of consistent method names from the Enumerable module.
63
67
  Enabled: true
@@ -72,10 +76,6 @@ Style/ConstantVisibility:
72
76
  # Protect the public API by requiring constants visibility.
73
77
  Enabled: true
74
78
 
75
- Style/ClassMethodsDefinitions:
76
- # Prefer to define class methods like: `def self.<class_method_name>`.
77
- Enabled: true
78
-
79
79
  Style/Copyright:
80
80
  # Don't require a copyright notice in every source file.
81
81
  Enabled: false
@@ -90,6 +90,18 @@ Style/Documentation:
90
90
  Exclude:
91
91
  - test/**/*
92
92
 
93
+ Style/EmptyClassDefinition:
94
+ # Prefer using single-line constant definition for StandardError classes
95
+ # (only). e.g.
96
+ # class MyModel < ApplicationRecord; end # Good
97
+ # MyModel = Class.new(ApplicationRecord) # Bad
98
+ #
99
+ # Error = Class.new(StandardError) # Good
100
+ # class Error < StandardError; end # Bad
101
+ EnforcedStyle: class_keyword
102
+ AllowedParentClasses:
103
+ - StandardError
104
+
93
105
  Style/EmptyElse:
94
106
  # Require an explanatory comment if we're otherwise wanting to utilize an
95
107
  # empty `else` block.
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.22
4
+ version: 0.7.24
5
5
  platform: ruby
6
6
  authors:
7
7
  - Paul DobbinSchmaltz
@@ -257,7 +257,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
257
257
  requirements:
258
258
  - - ">="
259
259
  - !ruby/object:Gem::Version
260
- version: '3.2'
260
+ version: '3.1'
261
261
  required_rubygems_version: !ruby/object:Gem::Requirement
262
262
  requirements:
263
263
  - - ">="