gemwork 0.7.2 → 0.7.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: 0f1b7a3d5a94aa04a34a32029c783470048b82193b55ec5602c394a838fbe340
4
- data.tar.gz: de38e3ba487a57e97243988d33f5138dbc1745eb7ca562f107c0b727dc4833e1
3
+ metadata.gz: 493f76653a862920181da5e40c6555b61e9a6012e8d6d161fc6ed4c36274bf41
4
+ data.tar.gz: f83ae0dfd50ce9dc719192ed989cf0a8464fa9712cae7da59a7c8fdc50c66d2a
5
5
  SHA512:
6
- metadata.gz: fc86d2a0a434e2919cc91e266121ab2ee79b65accd00b46856b926dfdfe2f289f13bfbdd562b9d6d680ee1623d40d7799e73b0e215e5a40069122b6cc9dd2059
7
- data.tar.gz: ebd1c6de8cd02f80696959588898e010d9564ba5defb60a77f7d703d7e8839f0213599bafd0993fd3fcefdd17bae40b5e7c0a43f338731d98a82d240ca4fd227
6
+ metadata.gz: 1b820ca503207ebdf64a9b69e64689614f15e2f750014354139da6693a11fb1e69361993e7ab5e540ac57f75a6d6627f248d0433d0b024a39bf4dfefc7517818
7
+ data.tar.gz: 805cd7d152497b9437a9877a3741f97e6b187cc777646af0f697bacbe3e540165747a61121e0ced77a1ff02cdce01e6975345045d48513553e09f0ab109c6a52
data/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [0.7.4] - 2025-1-4
4
+
5
+ - Fix typo in Rubocop cop name
6
+
7
+ ## [0.7.3] - 2025-1-4
8
+
9
+ - Update minimum Ruby version from 3.1 -> 3.2
10
+ - Update RuboCop config to exclude db/seeds.rb from a few of the more restrictive Style/Layout/Metrics cops
11
+ - Update reek config to altogether exclude db/seeds.rb
12
+
3
13
  ## [0.7.2] - 2024-11-22
4
14
 
5
15
  - Remove auto-detect of ActiveSupport::TestCase vs Minitest::Spec in favor of manual selection of test/support/much_stub.rb vs test/support/much_stub-rails.rb. This fixes incorrect auto-detection of "Rails" env in gems that include a Rails test dummy.
data/LICENSE.txt CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2023 Paul DobbinSchmaltz
3
+ Copyright (c) 2025 Paul DobbinSchmaltz
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
data/README.md CHANGED
@@ -144,7 +144,7 @@ inherit_gem:
144
144
 
145
145
  # Override values from gemwork's lib/rubocop/all_cops.yml config.
146
146
  AllCops:
147
- TargetRubyVersion: 3.1
147
+ TargetRubyVersion: 3.4
148
148
  ```
149
149
 
150
150
  See also: [RuboCop's Configuration Guide on Inheritance](https://github.com/rubocop/rubocop/blob/master/docs/modules/ROOT/pages/configuration.adoc#inheriting-configuration-from-a-dependency-gem).
@@ -177,7 +177,7 @@ inherit_gem:
177
177
 
178
178
  # Override values from gemwork's lib/rubocop/all_cops.yml config.
179
179
  AllCops:
180
- TargetRubyVersion: 3.3
180
+ TargetRubyVersion: 3.4
181
181
  Exclude:
182
182
  - bin/bundle
183
183
  ```
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Gemwork
4
- VERSION = "0.7.2"
4
+ VERSION = "0.7.4"
5
5
  end
@@ -17,6 +17,8 @@ directories:
17
17
  app/controllers:
18
18
  IrresponsibleModule:
19
19
  enabled: false
20
+ InstanceVariableAssumption:
21
+ enabled: false
20
22
  app/helpers:
21
23
  IrresponsibleModule:
22
24
  enabled: false
@@ -47,5 +49,6 @@ directories:
47
49
 
48
50
  exclude_paths:
49
51
  - db/migrate/*
52
+ - db/seeds.rb
50
53
  - test/**/*
51
54
  - lib/templates/**/*
@@ -3,7 +3,7 @@ AllCops:
3
3
  DisplayStyleGuide: true
4
4
  ExtraDetails: true
5
5
  NewCops: enable
6
- TargetRubyVersion: 3.3
6
+ TargetRubyVersion: 3.4
7
7
  UseCache: true
8
8
  Exclude:
9
9
  # Rubocop Defaults
@@ -3,7 +3,7 @@ AllCops:
3
3
  DisplayStyleGuide: true
4
4
  ExtraDetails: true
5
5
  NewCops: enable
6
- TargetRubyVersion: 3.1
6
+ TargetRubyVersion: 3.2
7
7
  UseCache: true
8
8
  Exclude:
9
9
  # Rubocop Defaults
@@ -8,3 +8,8 @@ Layout/LineLength:
8
8
  Exclude:
9
9
  - Gemfile
10
10
  - config/environments/*.rb
11
+ - db/seeds.rb
12
+
13
+ Layout/MultilineArrayLineBreaks:
14
+ Exclude:
15
+ - db/seeds.rb
@@ -11,4 +11,5 @@ Metrics/BlockLength:
11
11
  - config/environments/*.rb
12
12
  - config/routes.rb
13
13
  - db/migrate/*.rb
14
+ - db/seeds.rb
14
15
  - test/**/*
@@ -12,3 +12,7 @@ Style/FrozenStringLiteralComment:
12
12
  Exclude:
13
13
  - config.ru
14
14
  - bin/*
15
+
16
+ Style/MultilineBlockChain:
17
+ Exclude:
18
+ - db/seeds.rb
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gemwork
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.2
4
+ version: 0.7.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Paul DobbinSchmaltz
8
- autorequire:
9
8
  bindir: exe
10
9
  cert_chain: []
11
- date: 2024-11-22 00:00:00.000000000 Z
10
+ date: 2025-01-04 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: rake
@@ -246,7 +245,6 @@ metadata:
246
245
  source_code_uri: https://github.com/pdobb/gemwork
247
246
  homepage_uri: https://github.com/pdobb/gemwork
248
247
  rubygems_mfa_required: 'true'
249
- post_install_message:
250
248
  rdoc_options: []
251
249
  require_paths:
252
250
  - lib
@@ -254,15 +252,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
254
252
  requirements:
255
253
  - - ">="
256
254
  - !ruby/object:Gem::Version
257
- version: '3.1'
255
+ version: '3.2'
258
256
  required_rubygems_version: !ruby/object:Gem::Requirement
259
257
  requirements:
260
258
  - - ">="
261
259
  - !ruby/object:Gem::Version
262
260
  version: '0'
263
261
  requirements: []
264
- rubygems_version: 3.5.23
265
- signing_key:
262
+ rubygems_version: 3.6.2
266
263
  specification_version: 4
267
264
  summary: Common gem framework code used by pdobb's Ruby Gems.
268
265
  test_files: []