philiprehberger-task_runner 0.1.1 → 0.1.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/CHANGELOG.md +10 -0
- data/README.md +3 -3
- 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: b6dfc4d0ba28ecfa8f7595708a8d1ed644a6af53c0ccca5e0ea3088a059ba50e
|
|
4
|
+
data.tar.gz: 15256a978c23e405abb6a01b8045c6c03b193f9fcb43f199fd883fe5412482fc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 55115c901422f69e3fd8e3a0a104c9227a73916675d70587c5203043da7f8e4044c3d35104a88d26d28cde519fc6cedd31d5ef6a672f17959444cf77ef203e1b
|
|
7
|
+
data.tar.gz: bb70b1e19dc9dac1381f0203112dab213ef5771d5bc06459e098ec7a563ee5fb04bc79c156b286d2f9a6066613c3a692893e17e333b10398c202aabf1a1c2e8a
|
data/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.1.3] - 2026-03-24
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
- Fix README one-liner to remove trailing period
|
|
14
|
+
|
|
15
|
+
## [0.1.2] - 2026-03-24
|
|
16
|
+
|
|
17
|
+
### Fixed
|
|
18
|
+
- Remove inline comments from Development section to match template
|
|
19
|
+
|
|
10
20
|
## [0.1.1] - 2026-03-22
|
|
11
21
|
|
|
12
22
|
### Changed
|
data/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
[](https://rubygems.org/gems/philiprehberger-task_runner)
|
|
5
5
|
[](LICENSE)
|
|
6
6
|
|
|
7
|
-
Shell command runner with output capture, timeout, and streaming
|
|
7
|
+
Shell command runner with output capture, timeout, and streaming
|
|
8
8
|
|
|
9
9
|
## Requirements
|
|
10
10
|
|
|
@@ -76,8 +76,8 @@ end
|
|
|
76
76
|
|
|
77
77
|
```bash
|
|
78
78
|
bundle install
|
|
79
|
-
bundle exec rspec
|
|
80
|
-
bundle exec rubocop
|
|
79
|
+
bundle exec rspec
|
|
80
|
+
bundle exec rubocop
|
|
81
81
|
```
|
|
82
82
|
|
|
83
83
|
## 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.3
|
|
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-25 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.
|