philiprehberger-task_runner 0.1.2 → 0.1.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/CHANGELOG.md +11 -0
- data/README.md +3 -2
- data/lib/philiprehberger/task_runner/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bc3c30fcbfaa30b9fadae49ec53c684fc3d37dbe5412c2fa9c78c1522da43a50
|
|
4
|
+
data.tar.gz: e1afad6175080317811e29c6c35b8fe677ea7399ed6cac836ae691e99b8f7f5f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cb7eedfdd788764d5ec22723732e083c54e799a1f40fd5436f0d3358d7fa28a405f8ef6181474e7b1db7a35a7926278f758dca2e8dd0a81a29eacfb6348d717e
|
|
7
|
+
data.tar.gz: b321900f5f3be20b69a3c761ff4df849ed0957a35f7be46634056cb5de3aa848915fcecad36e75f3021b6243050a47c78b01947f9e29ff9866d2d1858156a0e5
|
data/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.1.4] - 2026-03-26
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- Add Sponsor badge and fix License link format in README
|
|
15
|
+
|
|
16
|
+
## [0.1.3] - 2026-03-24
|
|
17
|
+
|
|
18
|
+
### Fixed
|
|
19
|
+
- Fix README one-liner to remove trailing period
|
|
20
|
+
|
|
10
21
|
## [0.1.2] - 2026-03-24
|
|
11
22
|
|
|
12
23
|
### Fixed
|
data/README.md
CHANGED
|
@@ -3,8 +3,9 @@
|
|
|
3
3
|
[](https://github.com/philiprehberger/rb-task-runner/actions/workflows/ci.yml)
|
|
4
4
|
[](https://rubygems.org/gems/philiprehberger-task_runner)
|
|
5
5
|
[](LICENSE)
|
|
6
|
+
[](https://github.com/sponsors/philiprehberger)
|
|
6
7
|
|
|
7
|
-
Shell command runner with output capture, timeout, and streaming
|
|
8
|
+
Shell command runner with output capture, timeout, and streaming
|
|
8
9
|
|
|
9
10
|
## Requirements
|
|
10
11
|
|
|
@@ -82,4 +83,4 @@ bundle exec rubocop
|
|
|
82
83
|
|
|
83
84
|
## License
|
|
84
85
|
|
|
85
|
-
MIT
|
|
86
|
+
[MIT](LICENSE)
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: philiprehberger-task_runner
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Philip Rehberger
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-03-
|
|
11
|
+
date: 2026-03-27 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: Run shell commands with captured stdout/stderr, exit code, duration measurement,
|
|
14
14
|
configurable timeout, environment variables, and line-by-line streaming via blocks.
|