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 +4 -4
- data/CHANGELOG.md +5 -0
- data/lib/.DS_Store +0 -0
- data/lib/gemwork/version.rb +1 -1
- data/lib/rubocop/all_cops-rails.yml +0 -1
- data/lib/rubocop/rails.yml +5 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9b5a2126cb36e2888966c286fb921ba2ce7d58c219846e0f7110f0fb19147463
|
4
|
+
data.tar.gz: 450f4d526499f10d177576e83217f58190b6866576623b09a97089c82f906fb1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
data/lib/gemwork/version.rb
CHANGED
data/lib/rubocop/rails.yml
CHANGED
@@ -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.
|