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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f979a892b4e72dc55042ddd614e2c3fd73d2e94a80a0d05aaef326e562b9af38
4
- data.tar.gz: 744f779674b5ea6547f37f273fdcc471cc9aa0a534e0ef6240e17fc477ec289c
3
+ metadata.gz: b6dfc4d0ba28ecfa8f7595708a8d1ed644a6af53c0ccca5e0ea3088a059ba50e
4
+ data.tar.gz: 15256a978c23e405abb6a01b8045c6c03b193f9fcb43f199fd883fe5412482fc
5
5
  SHA512:
6
- metadata.gz: 1e89c98d1a8e0dab41d0e466653f76b9dbebb5735c76b0000de049550dcd8fff0b244bd5507c3f0cbe01ec426079c7eeb2685028ae2ef0a6f0e70caa1be34fb4
7
- data.tar.gz: c62b7070b6c84311aacfeee3dfae8e6775a75c3e43ba46869f45622689d4834dfcbf72ded914a438eebe4e360d740efa1248654be33e4d2221d8bad7def1fecd
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
  [![Gem Version](https://badge.fury.io/rb/philiprehberger-task_runner.svg)](https://rubygems.org/gems/philiprehberger-task_runner)
5
5
  [![License](https://img.shields.io/github/license/philiprehberger/rb-task-runner)](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 # Run tests
80
- bundle exec rubocop # Check code style
79
+ bundle exec rspec
80
+ bundle exec rubocop
81
81
  ```
82
82
 
83
83
  ## License
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Philiprehberger
4
4
  module TaskRunner
5
- VERSION = '0.1.1'
5
+ VERSION = '0.1.3'
6
6
  end
7
7
  end
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.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-22 00:00:00.000000000 Z
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.