philiprehberger-task_queue 0.2.8 → 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 +4 -4
- data/CHANGELOG.md +13 -0
- data/README.md +20 -3
- data/lib/philiprehberger/task_queue/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a0e8b37d7bad85dce1fa4281f41df74991b9e6362d6d5bf7e1cddf1dc0612f9a
|
|
4
|
+
data.tar.gz: 54a8725dea3cad2f9b8c8ec711dfa1c21522683d27d9d3bb84861d270a5b3f4a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ce894a8d984f95d2161d870ada0e0aef8f394cbbbd9f204173e5133eaa52acc0d6d59492dc4b4886fbcaa7461a360b588ba2e25fef908575a2f523aae216f610
|
|
7
|
+
data.tar.gz: f945b9c98cf3e8f13572c07dd8709ca040f340a66ba64a57d2552f6c219b9f74b0ee59293ef7859d1670f268dbcf5a936198058262e8f6fb40ca028e135e8643
|
data/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,19 @@ 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
|
+
|
|
10
23
|
## [0.2.8] - 2026-03-24
|
|
11
24
|
|
|
12
25
|
### Fixed
|
data/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://github.com/philiprehberger/rb-task-queue/actions/workflows/ci.yml)
|
|
4
4
|
[](https://rubygems.org/gems/philiprehberger-task_queue)
|
|
5
|
-
[](https://github.com/philiprehberger/rb-task-queue/commits/main)
|
|
6
6
|
|
|
7
7
|
In-process async job queue with concurrency control
|
|
8
8
|
|
|
@@ -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)
|
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.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-
|
|
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: []
|