philiprehberger-task_queue 0.2.0 → 0.2.1
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 +7 -0
- data/README.md +14 -0
- 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: e3cd82560d64b9754fc30641e980afce535bfeabbbc0fff39ecdd0a2032734b5
|
|
4
|
+
data.tar.gz: ef9c65fd500093f530cb0cf0f71e3b17d934682b8dafa881baf471354abcad2b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 66bbada6cc0dd9c204d673bfa097943320ec7f12ba8be66b15acdaf9670d9f1fb9052de5d88b2255bb09b1c4eb155668799cde871769a70b45ff64e0c389f230
|
|
7
|
+
data.tar.gz: '019c01d08b8e2c72b4a987d98de7e2bd58d5c6c0a5fd5dd24c9e8de7ff70a1485e87b77f1368f433e38e80c31e479c632af72fdd76f0b1d2d62a17ebe2bd90e9'
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.2.1
|
|
4
|
+
|
|
5
|
+
- Add License badge to README
|
|
6
|
+
- Add bug_tracker_uri to gemspec
|
|
7
|
+
- Add Development section to README
|
|
8
|
+
- Add Requirements section to README
|
|
9
|
+
|
|
3
10
|
All notable changes to this project will be documented in this file.
|
|
4
11
|
|
|
5
12
|
## [0.2.0] - 2026-03-12
|
data/README.md
CHANGED
|
@@ -2,9 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://rubygems.org/gems/philiprehberger-task_queue)
|
|
4
4
|
[](https://github.com/philiprehberger/rb-task-queue/actions/workflows/ci.yml)
|
|
5
|
+
[](LICENSE)
|
|
5
6
|
|
|
6
7
|
In-process async job queue with concurrency control for Ruby.
|
|
7
8
|
|
|
9
|
+
## Requirements
|
|
10
|
+
|
|
11
|
+
- Ruby >= 3.1
|
|
12
|
+
|
|
8
13
|
## Installation
|
|
9
14
|
|
|
10
15
|
Add to your Gemfile:
|
|
@@ -83,6 +88,15 @@ queue.drain(timeout: 10) # waits for all tasks to finish
|
|
|
83
88
|
| `#stats` | Returns hash with `:completed`, `:failed`, `:pending` counts |
|
|
84
89
|
| `#drain(timeout: 30)` | Block until all pending tasks complete (without shutdown) |
|
|
85
90
|
|
|
91
|
+
|
|
92
|
+
## Development
|
|
93
|
+
|
|
94
|
+
```bash
|
|
95
|
+
bundle install
|
|
96
|
+
bundle exec rspec
|
|
97
|
+
bundle exec rubocop
|
|
98
|
+
```
|
|
99
|
+
|
|
86
100
|
## License
|
|
87
101
|
|
|
88
102
|
[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.1
|
|
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-16 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.
|