process_executer 4.0.3 → 4.0.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: 80aa4031ab96fafeb8d1c1126fe4646145b59208221aec2188f21904cede7b7d
4
- data.tar.gz: 1007e6fb46320b51bfe9d216a0ef9646d357bcff20c60313c32885b31db8b7f2
3
+ metadata.gz: 326f0746501479260d59d78579f9ff9e049a516a7b76e177e7ade04b90f0eece
4
+ data.tar.gz: 7352423248b6d8d7b1785e450ff0aae1c836fa1dfcc2a4e6b791d29d8a3d386c
5
5
  SHA512:
6
- metadata.gz: c2cb8d71448b21f256d03011b20492eb8f5b766d668c564a3a836e01fe4aa68bdbf2d5135f8461d576cccb54ca3e189f59999f93aa51d33dcd65bb00b3be15f9
7
- data.tar.gz: d6cb1188669658fed64b92f5bdce4262bb87b1e38f6fff710cfe9e15773d753b70e6d4aff9b73def4ff1e823428ddf7dd8356518c33deccfb88de3658f706787
6
+ metadata.gz: 2147f37dc71f48a5c8a525103bc517d4be9bf4fde29f1a7d4d12952cf42976c96567256c5eea8ffe101d409829f63011093828551bc30fc779627978df7219c7
7
+ data.tar.gz: 175fe9b38d29b3b6c7441293ca837344231019f22d0cb815013cd766f606487873ebb062134e00a493f3a5c41a7f1f5b6c2d3e152ea51ab800f12536aa695d50
@@ -1,3 +1,3 @@
1
1
  {
2
- ".": "4.0.3"
2
+ ".": "4.0.4"
3
3
  }
data/CHANGELOG.md CHANGED
@@ -5,6 +5,18 @@ All notable changes to the process_executer gem will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [4.0.4](https://github.com/main-branch/process_executer/compare/v4.0.3...v4.0.4) (2026-04-24)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * **rubocop:** Fix offenses introduced by new rubocop cops ([b21ca99](https://github.com/main-branch/process_executer/commit/b21ca991641784146b0c92c1dd3205fc9d2c0f4f))
14
+
15
+
16
+ ### Other Changes
17
+
18
+ * **dependencies:** Update dependencies for all GitHub Actions workflows ([3524dbf](https://github.com/main-branch/process_executer/commit/3524dbf8b5945c233be96381f4555407b537f236))
19
+
8
20
  ## [4.0.3](https://github.com/main-branch/process_executer/compare/v4.0.2...v4.0.3) (2026-01-04)
9
21
 
10
22
 
@@ -76,7 +76,7 @@ module ProcessExecuter
76
76
  destination_classes =
77
77
  ProcessExecuter::Destinations.constants
78
78
  .map { |const| ProcessExecuter::Destinations.const_get(const) }
79
- .select { |const| const.is_a?(Class) }
79
+ .grep(Class)
80
80
  .reject { |klass| klass == ProcessExecuter::Destinations::DestinationBase }
81
81
 
82
82
  destination_classes.find { |klass| klass.handles?(destination) }
@@ -87,8 +87,8 @@ module ProcessExecuter
87
87
  #
88
88
  def allowed_options
89
89
  @allowed_options ||=
90
- define_options.each_with_object({}) do |option, hash|
91
- hash[option.name] = option
90
+ define_options.to_h do |option|
91
+ [option.name, option]
92
92
  end.freeze
93
93
  end
94
94
 
@@ -3,5 +3,5 @@
3
3
  module ProcessExecuter
4
4
  # The current Gem version
5
5
  # @return [String]
6
- VERSION = '4.0.3'
6
+ VERSION = '4.0.4'
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: process_executer
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.0.3
4
+ version: 4.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - James Couball
@@ -293,8 +293,8 @@ metadata:
293
293
  allowed_push_host: https://rubygems.org
294
294
  homepage_uri: https://github.com/main-branch/process_executer
295
295
  source_code_uri: https://github.com/main-branch/process_executer
296
- documentation_uri: https://rubydoc.info/gems/process_executer/4.0.3
297
- changelog_uri: https://rubydoc.info/gems/process_executer/4.0.3/file/CHANGELOG.md
296
+ documentation_uri: https://rubydoc.info/gems/process_executer/4.0.4
297
+ changelog_uri: https://rubydoc.info/gems/process_executer/4.0.4/file/CHANGELOG.md
298
298
  rubygems_mfa_required: 'true'
299
299
  rdoc_options: []
300
300
  require_paths: