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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b73a9dbb90b1d58a4d836cddb1c2b540b423036effb7ca99caabc6471fd5e637
4
- data.tar.gz: 551830b991dc5aac03fdf3a1c1638a3a05ca26515e205b2869552990821af0f7
3
+ metadata.gz: bc3c30fcbfaa30b9fadae49ec53c684fc3d37dbe5412c2fa9c78c1522da43a50
4
+ data.tar.gz: e1afad6175080317811e29c6c35b8fe677ea7399ed6cac836ae691e99b8f7f5f
5
5
  SHA512:
6
- metadata.gz: 0e905b18b4fef11fe08a1c9c276bca22befd08b8357cbeb7d27829960667c5faf934b7214f7fd776efcca8ef40a9228099a423bfdc92ddbffb21766dd78bc809
7
- data.tar.gz: c9cca093d289caa229db20d0833f932093124d2bb103a0e5e69caf79110c9191963f63cc7eaae7db2f3c03566ea2f56bc8612cd7c2fcd0ea6c01898b466bff95
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
  [![Tests](https://github.com/philiprehberger/rb-task-runner/actions/workflows/ci.yml/badge.svg)](https://github.com/philiprehberger/rb-task-runner/actions/workflows/ci.yml)
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
+ [![Sponsor](https://img.shields.io/badge/sponsor-GitHub%20Sponsors-ec6cb9)](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)
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Philiprehberger
4
4
  module TaskRunner
5
- VERSION = '0.1.2'
5
+ VERSION = "0.1.4"
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.2
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-25 00:00:00.000000000 Z
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.