philiprehberger-task_queue 0.2.7 → 0.2.10

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: ee2bbb2b28ed39f54bb4d1c28bfb5c1e6f9f7d461c6d07b780ebe6b7de052f44
4
- data.tar.gz: 91e2e56aa4089aee22603511937ab5b3da038de02b274df1c166295315720a1d
3
+ metadata.gz: a0e8b37d7bad85dce1fa4281f41df74991b9e6362d6d5bf7e1cddf1dc0612f9a
4
+ data.tar.gz: 54a8725dea3cad2f9b8c8ec711dfa1c21522683d27d9d3bb84861d270a5b3f4a
5
5
  SHA512:
6
- metadata.gz: 7ec6345e8a3a505bd4bfcbdef9313d219b6d9e3764db3b3653fdea07eae2b24004f1af9f5c2a304cadf596b3d91bf70e4895d39b304452f8932a6da97864e647
7
- data.tar.gz: c02bb7421f205484c0a3e448979742d10f3eb67ecc7b830f0e2defcbdd7994262c2a8e75bdd4d8e3177cdf6f33b8e0c972507c8a1b338f6f3a9fdc80dae4ae99
6
+ metadata.gz: ce894a8d984f95d2161d870ada0e0aef8f394cbbbd9f204173e5133eaa52acc0d6d59492dc4b4886fbcaa7461a360b588ba2e25fef908575a2f523aae216f610
7
+ data.tar.gz: f945b9c98cf3e8f13572c07dd8709ca040f340a66ba64a57d2552f6c219b9f74b0ee59293ef7859d1670f268dbcf5a936198058262e8f6fb40ca028e135e8643
data/CHANGELOG.md CHANGED
@@ -7,6 +7,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.2.10] - 2026-03-31
11
+
12
+ ### Changed
13
+ - Standardize README badges, support section, and license format
14
+
15
+ ## [0.2.9] - 2026-03-26
16
+
17
+ ### Changed
18
+ - Add Sponsor badge to README
19
+ - Fix License section format
20
+ - Sync gemspec summary with README
21
+
22
+
23
+ ## [0.2.8] - 2026-03-24
24
+
25
+ ### Fixed
26
+ - Align README one-liner with gemspec summary
27
+
10
28
  ## [0.2.7] - 2026-03-23
11
29
 
12
30
  ### Fixed
data/README.md CHANGED
@@ -2,9 +2,9 @@
2
2
 
3
3
  [![Tests](https://github.com/philiprehberger/rb-task-queue/actions/workflows/ci.yml/badge.svg)](https://github.com/philiprehberger/rb-task-queue/actions/workflows/ci.yml)
4
4
  [![Gem Version](https://badge.fury.io/rb/philiprehberger-task_queue.svg)](https://rubygems.org/gems/philiprehberger-task_queue)
5
- [![License](https://img.shields.io/github/license/philiprehberger/rb-task-queue)](LICENSE)
5
+ [![Last updated](https://img.shields.io/github/last-commit/philiprehberger/rb-task-queue)](https://github.com/philiprehberger/rb-task-queue/commits/main)
6
6
 
7
- In-process async job queue with concurrency control for Ruby
7
+ In-process async job queue with concurrency control
8
8
 
9
9
  ## Requirements
10
10
 
@@ -144,7 +144,6 @@ queue.shutdown(timeout: 5)
144
144
  | `#stats` | _(none)_ | `Hash` | Returns `{ completed:, failed:, pending: }` with Integer counts |
145
145
  | `#drain(timeout:)` | `timeout` — seconds to wait (Numeric, default `30`) | `nil` | Block until all pending and in-flight tasks complete without shutting down |
146
146
 
147
-
148
147
  ## Development
149
148
 
150
149
  ```bash
@@ -153,6 +152,24 @@ bundle exec rspec
153
152
  bundle exec rubocop
154
153
  ```
155
154
 
155
+ ## Support
156
+
157
+ If you find this project useful:
158
+
159
+ ⭐ [Star the repo](https://github.com/philiprehberger/rb-task-queue)
160
+
161
+ 🐛 [Report issues](https://github.com/philiprehberger/rb-task-queue/issues?q=is%3Aissue+is%3Aopen+label%3Abug)
162
+
163
+ 💡 [Suggest features](https://github.com/philiprehberger/rb-task-queue/issues?q=is%3Aissue+is%3Aopen+label%3Aenhancement)
164
+
165
+ ❤️ [Sponsor development](https://github.com/sponsors/philiprehberger)
166
+
167
+ 🌐 [All Open Source Projects](https://philiprehberger.com/open-source-packages)
168
+
169
+ 💻 [GitHub Profile](https://github.com/philiprehberger)
170
+
171
+ 🔗 [LinkedIn Profile](https://www.linkedin.com/in/philiprehberger)
172
+
156
173
  ## License
157
174
 
158
- MIT
175
+ [MIT](LICENSE)
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Philiprehberger
4
4
  module TaskQueue
5
- VERSION = '0.2.7'
5
+ VERSION = '0.2.10'
6
6
  end
7
7
  end
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.7
4
+ version: 0.2.10
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-23 00:00:00.000000000 Z
11
+ date: 2026-03-31 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.
@@ -52,5 +52,5 @@ requirements: []
52
52
  rubygems_version: 3.5.22
53
53
  signing_key:
54
54
  specification_version: 4
55
- summary: In-process async job queue with concurrency control
55
+ summary: In-process async job queue with concurrency control for Ruby
56
56
  test_files: []