process_executer 3.2.1 → 3.2.3
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 +3 -0
- data/CHANGELOG.md +14 -0
- data/README.md +0 -2
- data/Rakefile +7 -0
- data/lib/process_executer/version.rb +1 -1
- data/release-please-config.json +22 -0
- metadata +7 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2000a0333ebf2ac629edac374ca29355a557c05e512783570b650738c439719c
|
4
|
+
data.tar.gz: 0347f4f0a06370cfbfd4e4240947cf940879acecc6d072fad77711bb04598125
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4553524b57e82b0a601f94d84e2f4dcda5e0ffc761774d95a083673fcd0eb56fd8608a4124d1fdf84a7d815220f57f0c8753f60f85d3754ae2bfb486b0666d36
|
7
|
+
data.tar.gz: bd5516506787274bf2a9baf3b20b2738bde3b71c4874f024e457e08dfad49070204bec7c8ee4aec01113db113397a9c17a15f86184dc8e7f03f80ae8da68e8e1
|
data/CHANGELOG.md
CHANGED
@@ -5,6 +5,20 @@ 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
|
+
## [3.2.3](https://github.com/main-branch/process_executer/compare/v3.2.2...v3.2.3) (2025-04-17)
|
9
|
+
|
10
|
+
|
11
|
+
### Bug Fixes
|
12
|
+
|
13
|
+
* Do not trigger build workflows after merging to main or for release PRs ([0b2701c](https://github.com/main-branch/process_executer/commit/0b2701c4eef8ecc929f9f987433599145b224256))
|
14
|
+
|
15
|
+
## [3.2.2](https://github.com/main-branch/process_executer/compare/v3.2.1...v3.2.2) (2025-04-16)
|
16
|
+
|
17
|
+
|
18
|
+
### Bug Fixes
|
19
|
+
|
20
|
+
* Automate commit-to-publish workflow ([c51e8d2](https://github.com/main-branch/process_executer/commit/c51e8d2dfcff21ccd634fe58d5eb3b733869877d))
|
21
|
+
|
8
22
|
## v3.2.1 (2025-04-08)
|
9
23
|
|
10
24
|
[Full Changelog](https://github.com/main-branch/process_executer/compare/v3.2.0..v3.2.1)
|
data/README.md
CHANGED
@@ -4,8 +4,6 @@
|
|
4
4
|
[](https://rubydoc.info/gems/process_executer/)
|
5
5
|
[](https://rubydoc.info/gems/process_executer/file/CHANGELOG.md)
|
6
6
|
[](https://github.com/main-branch/process_executer/actions/workflows/continuous-integration.yml)
|
7
|
-
[](https://codeclimate.com/github/main-branch/process_executer/maintainability)
|
8
|
-
[](https://codeclimate.com/github/main-branch/process_executer/test_coverage)
|
9
7
|
[](https://conventionalcommits.org)
|
11
9
|
[](https://main-branch.slack.com/archives/C07NG2BPG8Y)
|
data/Rakefile
CHANGED
@@ -28,6 +28,13 @@ rescue Bundler::BundlerError => e
|
|
28
28
|
exit e.status_code
|
29
29
|
end
|
30
30
|
|
31
|
+
# Make it so that calling `rake release` just calls `rake release:rubygems_push` to
|
32
|
+
# avoid creating and pushing a new tag.
|
33
|
+
|
34
|
+
Rake::Task['release'].clear
|
35
|
+
desc 'Customized release task to avoid creating a new tag'
|
36
|
+
task release: 'release:rubygem_push'
|
37
|
+
|
31
38
|
CLEAN << 'pkg'
|
32
39
|
CLOBBER << 'Gemfile.lock'
|
33
40
|
|
@@ -0,0 +1,22 @@
|
|
1
|
+
{
|
2
|
+
"bootstrap-sha": "d12757fe8f44f5cf2bb9092c686d642fe41f436f",
|
3
|
+
"packages": {
|
4
|
+
".": {
|
5
|
+
"release-type": "ruby",
|
6
|
+
"package-name": "process_executer",
|
7
|
+
"changelog-path": "CHANGELOG.md",
|
8
|
+
"version-file": "lib/process_executer/version.rb",
|
9
|
+
"bump-minor-pre-major": true,
|
10
|
+
"bump-patch-for-minor-pre-major": true,
|
11
|
+
"draft": false,
|
12
|
+
"prerelease": false,
|
13
|
+
"include-component-in-tag": false
|
14
|
+
}
|
15
|
+
},
|
16
|
+
"plugins": [
|
17
|
+
{
|
18
|
+
"type": "sentence-case"
|
19
|
+
}
|
20
|
+
],
|
21
|
+
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json"
|
22
|
+
}
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: process_executer
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.2.
|
4
|
+
version: 3.2.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- James Couball
|
8
8
|
bindir: exe
|
9
9
|
cert_chain: []
|
10
|
-
date:
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: track_open_instances
|
@@ -221,6 +221,7 @@ files:
|
|
221
221
|
- ".commitlintrc.yml"
|
222
222
|
- ".husky/commit-msg"
|
223
223
|
- ".markdownlint.yml"
|
224
|
+
- ".release-please-manifest.json"
|
224
225
|
- ".rspec"
|
225
226
|
- ".rubocop.yml"
|
226
227
|
- ".yardopts"
|
@@ -257,6 +258,7 @@ files:
|
|
257
258
|
- lib/process_executer/version.rb
|
258
259
|
- package.json
|
259
260
|
- process_executer.gemspec
|
261
|
+
- release-please-config.json
|
260
262
|
homepage: https://github.com/main-branch/process_executer
|
261
263
|
licenses:
|
262
264
|
- MIT
|
@@ -264,8 +266,8 @@ metadata:
|
|
264
266
|
allowed_push_host: https://rubygems.org
|
265
267
|
homepage_uri: https://github.com/main-branch/process_executer
|
266
268
|
source_code_uri: https://github.com/main-branch/process_executer
|
267
|
-
documentation_uri: https://rubydoc.info/gems/process_executer/3.2.
|
268
|
-
changelog_uri: https://rubydoc.info/gems/process_executer/3.2.
|
269
|
+
documentation_uri: https://rubydoc.info/gems/process_executer/3.2.3
|
270
|
+
changelog_uri: https://rubydoc.info/gems/process_executer/3.2.3/file/CHANGELOG.md
|
269
271
|
rubygems_mfa_required: 'true'
|
270
272
|
rdoc_options: []
|
271
273
|
require_paths:
|
@@ -283,7 +285,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
283
285
|
requirements:
|
284
286
|
- 'Platform: Mac, Linux, or Windows'
|
285
287
|
- 'Ruby: MRI 3.1 or later, TruffleRuby 24 or later, or JRuby 9.4 or later'
|
286
|
-
rubygems_version: 3.6.
|
288
|
+
rubygems_version: 3.6.7
|
287
289
|
specification_version: 4
|
288
290
|
summary: An API for executing commands in a subprocess
|
289
291
|
test_files: []
|