process_executer 1.1.0 → 1.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.tool-versions +1 -1
- data/CHANGELOG.md +12 -0
- data/lib/process_executer/options.rb +0 -2
- data/lib/process_executer/version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5d476a9c88bc9491b887b5a5507dd2288f1aadf1b4735c8c15b790dbbfa423f9
|
4
|
+
data.tar.gz: 763c100ce03c3f625e323fefcdafe3788300c51429296110a5aa9222eb05d039
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f27eebdee1a46bac93ecfa8c78d29feba3ebb2c833d53dda7cd3213ee43c441994f50e0317592898a31d0eff42ca3a83cc3e3ad201d746fd641c7de9d3d9d762
|
7
|
+
data.tar.gz: 1e303f09b81b1605cfef527b41fbfc52f8e247a10c5ad3af1bed944bab2d6cf839eac9850b1b1c6038d73549abd1e7d0cef18de3dc081930f8d764512a3adc43
|
data/.tool-versions
CHANGED
@@ -1 +1 @@
|
|
1
|
-
ruby 3.
|
1
|
+
ruby 3.3.5
|
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
|
+
## v1.1.1 (2024-09-25)
|
9
|
+
|
10
|
+
[Full Changelog](https://github.com/main-branch/process_executer/compare/v1.1.0..v1.1.1)
|
11
|
+
|
12
|
+
Changes since v1.1.0:
|
13
|
+
|
14
|
+
* c3f063a Use a later version of ruby for development
|
15
|
+
* d4eeb1e Use latest version of the actions/checkout to v4
|
16
|
+
* eb4dad7 Fix flakey test on JRuby
|
17
|
+
* ac9417a Update CI build to run on v1.x branch
|
18
|
+
* 014e70f Remove unused require for 'forwardable' and 'ostruct' (for v1.x)
|
19
|
+
|
8
20
|
## v1.1.0 (2024-02-02)
|
9
21
|
|
10
22
|
[Full Changelog](https://github.com/main-branch/process_executer/compare/v1.0.2..v1.1.0)
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: process_executer
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- James Couball
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-09-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler-audit
|
@@ -200,8 +200,8 @@ metadata:
|
|
200
200
|
allowed_push_host: https://rubygems.org
|
201
201
|
homepage_uri: https://github.com/main-branch/process_executer
|
202
202
|
source_code_uri: https://github.com/main-branch/process_executer
|
203
|
-
changelog_uri: https://rubydoc.info/gems/process_executer/1.1.
|
204
|
-
documentation_uri: https://rubydoc.info/gems/process_executer/1.1.
|
203
|
+
changelog_uri: https://rubydoc.info/gems/process_executer/1.1.1/file/CHANGELOG.md
|
204
|
+
documentation_uri: https://rubydoc.info/gems/process_executer/1.1.1
|
205
205
|
rubygems_mfa_required: 'true'
|
206
206
|
post_install_message:
|
207
207
|
rdoc_options: []
|
@@ -218,7 +218,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
218
218
|
- !ruby/object:Gem::Version
|
219
219
|
version: '0'
|
220
220
|
requirements: []
|
221
|
-
rubygems_version: 3.
|
221
|
+
rubygems_version: 3.5.16
|
222
222
|
signing_key:
|
223
223
|
specification_version: 4
|
224
224
|
summary: An API for executing commands in a subprocess
|