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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 34263f9a3370dc191d5f7f2ec9744e9c92b9e50b80e305e9916d097a070d6b8b
4
- data.tar.gz: 230bf370d52a1b02eb928ac0a53b3f0abbb519cd5396903c622f831691f6128e
3
+ metadata.gz: e3cd82560d64b9754fc30641e980afce535bfeabbbc0fff39ecdd0a2032734b5
4
+ data.tar.gz: ef9c65fd500093f530cb0cf0f71e3b17d934682b8dafa881baf471354abcad2b
5
5
  SHA512:
6
- metadata.gz: f96333a34f87690f6ada381f4eec29e419aaf1a72aaf2237f7fd31d3af252aa6d11f2851613afcf56040f4c79bd50d12d397adf949b7eac2a01ee2d10f15b886
7
- data.tar.gz: a607205711f5647aceb92c6eec0c19103681a7c074ddfd1de7b3dbda30956f356403770bb36721c9ea5a2171d9282a84117f239c66b9a99b8c1a47a73875119b
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
  [![Gem Version](https://badge.fury.io/rb/philiprehberger-task_queue.svg)](https://rubygems.org/gems/philiprehberger-task_queue)
4
4
  [![CI](https://github.com/philiprehberger/rb-task-queue/actions/workflows/ci.yml/badge.svg)](https://github.com/philiprehberger/rb-task-queue/actions/workflows/ci.yml)
5
+ [![License](https://img.shields.io/github/license/philiprehberger/rb-task-queue)](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)
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Philiprehberger
4
4
  module TaskQueue
5
- VERSION = "0.2.0"
5
+ VERSION = "0.2.1"
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.0
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-13 00:00:00.000000000 Z
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.