gemwork 0.7.20 → 0.7.22

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: 7bb63156a6fefb9baf34cbc2a358c8443020bd1ab05d359d5e6260012dc666d4
4
- data.tar.gz: c1cccd7b5e5f853f4aef6f45449bc1e6c12cc5a6b78930220c958a595f327257
3
+ metadata.gz: 9b5a2126cb36e2888966c286fb921ba2ce7d58c219846e0f7110f0fb19147463
4
+ data.tar.gz: 450f4d526499f10d177576e83217f58190b6866576623b09a97089c82f906fb1
5
5
  SHA512:
6
- metadata.gz: 321ebd03ce7468cba7b40fa6db950e9e24b40158bfe583114c61c7286166d68dfaa988e3e3e8544bbab77891906b7eca2829bdf176d9958548ea6d6c0cabd19c
7
- data.tar.gz: b466c6eb5938bb6fb7bca2c93dfca56d48d1c068b53081f8232adb2a650efbe4a8c2ad7242518783ec79cd930d1ff95c35a16f1543caa261834eb9730621ca53
6
+ metadata.gz: bd056e7cb7a911da9a56fbbc2cc7327a79f2210c9f63dfaede37072d718761560b1b17ac5517651630a15b060ac7365de47a60493c6b90ad5aea4768d574a325
7
+ data.tar.gz: 29face0701ef9cccc049958853e8bcf6be4f744845be33227c05975f46d7ee15207f45422105dfb75270f10f72efd1d99199e863e57cd072988bdd818fa828d2
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [0.7.21] - 2025-10-12
4
+
5
+ - Exclude BaseControllers from Rails/ApplicationController
6
+ - Remove `EnabledByDefault` from all_cops-rails.yml
7
+
3
8
  ## [0.7.20] - 2025-10-11
4
9
 
5
10
  - Mass-Update Rubocop styles to match latest conventions from my professional projects
data/lib/.DS_Store CHANGED
Binary file
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Gemwork
4
- VERSION = "0.7.20"
4
+ VERSION = "0.7.22"
5
5
  public_constant :VERSION
6
6
  end
@@ -1,7 +1,6 @@
1
1
  AllCops:
2
2
  ActiveSupportExtensionsEnabled: true
3
3
  DisplayStyleGuide: true
4
- EnabledByDefault: true
5
4
  ExtraDetails: true
6
5
  NewCops: enable
7
6
  UseCache: true
@@ -2,6 +2,11 @@ Rails/ActionOrder:
2
2
  # Prefer Controller actions to be ordered in this way:
3
3
  ExpectedOrder: [index, show, new, create, edit, update, destroy]
4
4
 
5
+ Rails/ApplicationController:
6
+ # BaseControllers may rightfully need to inherit from ActionController::Base.
7
+ Exclude:
8
+ - app/controllers/**/base_controller.rb
9
+
5
10
  Rails/ApplicationJob:
6
11
  Exclude:
7
12
  - test/**/* # Allow for defining ActiveJob::Base test doubles.
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.20
4
+ version: 0.7.22
5
5
  platform: ruby
6
6
  authors:
7
7
  - Paul DobbinSchmaltz