philiprehberger-task_queue 0.2.6 → 0.2.8
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 +13 -0
- data/README.md +1 -1
- data/lib/philiprehberger/task_queue/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: f754b8edbc5ff436a9f86017218b9953e38fa91149079a75099a939cb68d0a00
|
|
4
|
+
data.tar.gz: 21bca679e41f7a16f03aaf12aa550728b22d22258432692ac25fdffdec3dfaf5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6b39b25e722d3d7899b856bb402c6ab6334a05b57163cd0dcecc63ed85467fc3126c0ae2147737db5d90c22c01a1e1528249ee1773f7cdd15a82669007f48bf7
|
|
7
|
+
data.tar.gz: 5fb4e00d377baaeb159c5357fa73ef3de43f98adfabd495f523d92c1e9762911bff5dcb72562cab1d74212d198b77b67edbd68744603e4ef4cd5f71b0b69e073
|
data/CHANGELOG.md
CHANGED
|
@@ -2,8 +2,21 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this gem will be documented in this file.
|
|
4
4
|
|
|
5
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
|
+
|
|
5
8
|
## [Unreleased]
|
|
6
9
|
|
|
10
|
+
## [0.2.8] - 2026-03-24
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
- Align README one-liner with gemspec summary
|
|
14
|
+
|
|
15
|
+
## [0.2.7] - 2026-03-23
|
|
16
|
+
|
|
17
|
+
### Fixed
|
|
18
|
+
- Standardize README/CHANGELOG to match template guide
|
|
19
|
+
|
|
7
20
|
## [0.2.6] - 2026-03-22
|
|
8
21
|
|
|
9
22
|
### Changed
|
data/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
[](https://rubygems.org/gems/philiprehberger-task_queue)
|
|
5
5
|
[](LICENSE)
|
|
6
6
|
|
|
7
|
-
In-process async job queue with concurrency control
|
|
7
|
+
In-process async job queue with concurrency control
|
|
8
8
|
|
|
9
9
|
## Requirements
|
|
10
10
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: philiprehberger-task_queue
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.8
|
|
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: A lightweight, zero-dependency, thread-safe in-process async job queue
|
|
14
14
|
with configurable concurrency for Ruby applications.
|