philiprehberger-task_queue 0.2.0 → 0.2.2

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: dbb261ee851c5f9064db0d79ecf1684ec7134b9df747437279afc27411ac7d40
4
+ data.tar.gz: 3b9e9c93835a2e1406d8ac2a153a912c0ce087351e35f9c2c49faf52622e2003
5
5
  SHA512:
6
- metadata.gz: f96333a34f87690f6ada381f4eec29e419aaf1a72aaf2237f7fd31d3af252aa6d11f2851613afcf56040f4c79bd50d12d397adf949b7eac2a01ee2d10f15b886
7
- data.tar.gz: a607205711f5647aceb92c6eec0c19103681a7c074ddfd1de7b3dbda30956f356403770bb36721c9ea5a2171d9282a84117f239c66b9a99b8c1a47a73875119b
6
+ metadata.gz: b4050c1c34922d3f4c0d155152c5f29e2e612104a56e8af82bbcbbb0bfd7a1a7ba4ab0e6963224e7c79a9aace383bdefa33147eb2e25f8c299d7f10993d10059
7
+ data.tar.gz: e94f4f029b34ea77cbd7d7afcf5031cdfdee1935b185e65ae328d3ceae2cb65788bc14736f5a3cbb39c7e479519045b81e6bc753f2e91eaeeab91c0decfe5df3
data/CHANGELOG.md CHANGED
@@ -1,5 +1,16 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.2.2
4
+
5
+ - Fix RuboCop Style/StringLiterals violations in gemspec
6
+
7
+ ## 0.2.1
8
+
9
+ - Add License badge to README
10
+ - Add bug_tracker_uri to gemspec
11
+ - Add Development section to README
12
+ - Add Requirements section to README
13
+
3
14
  All notable changes to this project will be documented in this file.
4
15
 
5
16
  ## [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:
@@ -15,7 +20,7 @@ gem "philiprehberger-task_queue"
15
20
 
16
21
  Or install directly:
17
22
 
18
- ```sh
23
+ ```bash
19
24
  gem install philiprehberger-task_queue
20
25
  ```
21
26
 
@@ -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
- [MIT](LICENSE)
102
+ MIT
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Philiprehberger
4
4
  module TaskQueue
5
- VERSION = "0.2.0"
5
+ VERSION = "0.2.2"
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.2
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-19 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.
@@ -32,6 +32,7 @@ metadata:
32
32
  homepage_uri: https://github.com/philiprehberger/rb-task-queue
33
33
  source_code_uri: https://github.com/philiprehberger/rb-task-queue
34
34
  changelog_uri: https://github.com/philiprehberger/rb-task-queue/blob/main/CHANGELOG.md
35
+ bug_tracker_uri: https://github.com/philiprehberger/rb-task-queue/issues
35
36
  rubygems_mfa_required: 'true'
36
37
  post_install_message:
37
38
  rdoc_options: []
@@ -41,7 +42,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
41
42
  requirements:
42
43
  - - ">="
43
44
  - !ruby/object:Gem::Version
44
- version: '3.1'
45
+ version: 3.1.0
45
46
  required_rubygems_version: !ruby/object:Gem::Requirement
46
47
  requirements:
47
48
  - - ">="