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 +4 -4
- data/.release-please-manifest.json +1 -1
- data/CHANGELOG.md +12 -0
- data/lib/process_executer/destinations.rb +1 -1
- data/lib/process_executer/options/base.rb +2 -2
- data/lib/process_executer/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 326f0746501479260d59d78579f9ff9e049a516a7b76e177e7ade04b90f0eece
|
|
4
|
+
data.tar.gz: 7352423248b6d8d7b1785e450ff0aae1c836fa1dfcc2a4e6b791d29d8a3d386c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2147f37dc71f48a5c8a525103bc517d4be9bf4fde29f1a7d4d12952cf42976c96567256c5eea8ffe101d409829f63011093828551bc30fc779627978df7219c7
|
|
7
|
+
data.tar.gz: 175fe9b38d29b3b6c7441293ca837344231019f22d0cb815013cd766f606487873ebb062134e00a493f3a5c41a7f1f5b6c2d3e152ea51ab800f12536aa695d50
|
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
|
-
.
|
|
79
|
+
.grep(Class)
|
|
80
80
|
.reject { |klass| klass == ProcessExecuter::Destinations::DestinationBase }
|
|
81
81
|
|
|
82
82
|
destination_classes.find { |klass| klass.handles?(destination) }
|
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.
|
|
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.
|
|
297
|
-
changelog_uri: https://rubydoc.info/gems/process_executer/4.0.
|
|
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:
|