philiprehberger-lock_kit 0.2.0 → 0.2.3

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: c9a963709d5941abac8fdbbb3c6fe9cf95505b182683a0156d72b31cd1f5bcd7
4
- data.tar.gz: d75615d7d5009c958771c6c27defb306727fe937832a1320d233c2c890440fc7
3
+ metadata.gz: 00027e34019a2945cc1d0cdb7814856d850735edbb603d2bc56bf3bbd1c6dee3
4
+ data.tar.gz: 57ce5708b9dc2000720334da4a7b55281331e374942d7b24887d33ef36e622df
5
5
  SHA512:
6
- metadata.gz: 2bee02f21982407cee48091a6af645609e9ea19985f11a452eaa700eacc3ca362c0fed2710980a675fc7c67c0d46c33a18fd91bfea75036fb19ce52f30e7738d
7
- data.tar.gz: 4cfdd43296b2de0c60b78ca6e96336607d2c84cfce5088ee161888680e30309aa53d1d33cc498e2d571f4d416f7c2bbdc1a5a2eeee60ec90881bced4d53f5d53
6
+ metadata.gz: 658255f5a49295524d9a8bd72d4e5530f2cd194dac02d1f2c70b679106f0e4919b674c2fe2eba257d7c8af65c185516368a3d4c5b2643394427ce3e81b75a393
7
+ data.tar.gz: 71781478e3a427aeeb256b80582a96cb7c58c799b98aa60ccf10a66fd9ac59a632fe4c5fb7374a5c0f814870f9b212f7c99afdc5509696cd15c15de72343655c
data/CHANGELOG.md CHANGED
@@ -7,6 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.2.3] - 2026-04-09
11
+
12
+ ### Fixed
13
+ - CI: split long gemspec summary line to satisfy RuboCop Layout/LineLength.
14
+
15
+ ## [0.2.2] - 2026-04-08
16
+
17
+ ### Changed
18
+ - Align gemspec summary with README description.
19
+
20
+ ## [0.2.1] - 2026-03-31
21
+
22
+ ### Changed
23
+ - Standardize README badges, support section, and license format
24
+
10
25
  ## [0.2.0] - 2026-03-28
11
26
 
12
27
  ### Added
data/README.md CHANGED
@@ -2,14 +2,9 @@
2
2
 
3
3
  [![Tests](https://github.com/philiprehberger/rb-lock-kit/actions/workflows/ci.yml/badge.svg)](https://github.com/philiprehberger/rb-lock-kit/actions/workflows/ci.yml)
4
4
  [![Gem Version](https://badge.fury.io/rb/philiprehberger-lock_kit.svg)](https://rubygems.org/gems/philiprehberger-lock_kit)
5
- [![GitHub release](https://img.shields.io/github/v/release/philiprehberger/rb-lock-kit)](https://github.com/philiprehberger/rb-lock-kit/releases)
6
5
  [![Last updated](https://img.shields.io/github/last-commit/philiprehberger/rb-lock-kit)](https://github.com/philiprehberger/rb-lock-kit/commits/main)
7
- [![License](https://img.shields.io/github/license/philiprehberger/rb-lock-kit)](LICENSE)
8
- [![Bug Reports](https://img.shields.io/github/issues/philiprehberger/rb-lock-kit/bug)](https://github.com/philiprehberger/rb-lock-kit/issues?q=is%3Aissue+is%3Aopen+label%3Abug)
9
- [![Feature Requests](https://img.shields.io/github/issues/philiprehberger/rb-lock-kit/enhancement)](https://github.com/philiprehberger/rb-lock-kit/issues?q=is%3Aissue+is%3Aopen+label%3Aenhancement)
10
- [![Sponsor](https://img.shields.io/badge/sponsor-GitHub%20Sponsors-ec6cb9)](https://github.com/sponsors/philiprehberger)
11
6
 
12
- File-based and PID locking for process coordination with stale lock detection, read-write locks, and lock owner identification.
7
+ File-based and PID locking for process coordination with stale lock detection, read-write locks, and lock owner identification
13
8
 
14
9
  ## Requirements
15
10
 
@@ -189,10 +184,21 @@ bundle exec rubocop
189
184
 
190
185
  ## Support
191
186
 
192
- If you find this package useful, consider giving it a star on GitHub — it helps motivate continued maintenance and development.
187
+ If you find this project useful:
193
188
 
194
- [![LinkedIn](https://img.shields.io/badge/Philip%20Rehberger-LinkedIn-0A66C2?logo=linkedin)](https://www.linkedin.com/in/philiprehberger)
195
- [![More packages](https://img.shields.io/badge/more-open%20source%20packages-blue)](https://philiprehberger.com/open-source-packages)
189
+ [Star the repo](https://github.com/philiprehberger/rb-lock-kit)
190
+
191
+ 🐛 [Report issues](https://github.com/philiprehberger/rb-lock-kit/issues?q=is%3Aissue+is%3Aopen+label%3Abug)
192
+
193
+ 💡 [Suggest features](https://github.com/philiprehberger/rb-lock-kit/issues?q=is%3Aissue+is%3Aopen+label%3Aenhancement)
194
+
195
+ ❤️ [Sponsor development](https://github.com/sponsors/philiprehberger)
196
+
197
+ 🌐 [All Open Source Projects](https://philiprehberger.com/open-source-packages)
198
+
199
+ 💻 [GitHub Profile](https://github.com/philiprehberger)
200
+
201
+ 🔗 [LinkedIn Profile](https://www.linkedin.com/in/philiprehberger)
196
202
 
197
203
  ## License
198
204
 
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Philiprehberger
4
4
  module LockKit
5
- VERSION = '0.2.0'
5
+ VERSION = '0.2.3'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: philiprehberger-lock_kit
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.3
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-29 00:00:00.000000000 Z
11
+ date: 2026-04-09 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: File locks using flock and PID file locks with stale detection for coordinating
14
14
  between processes. Timeout support and automatic cleanup.
@@ -26,11 +26,11 @@ files:
26
26
  - lib/philiprehberger/lock_kit/pid_lock.rb
27
27
  - lib/philiprehberger/lock_kit/read_write_lock.rb
28
28
  - lib/philiprehberger/lock_kit/version.rb
29
- homepage: https://github.com/philiprehberger/rb-lock-kit
29
+ homepage: https://philiprehberger.com/open-source-packages/ruby/philiprehberger-lock_kit
30
30
  licenses:
31
31
  - MIT
32
32
  metadata:
33
- homepage_uri: https://github.com/philiprehberger/rb-lock-kit
33
+ homepage_uri: https://philiprehberger.com/open-source-packages/ruby/philiprehberger-lock_kit
34
34
  source_code_uri: https://github.com/philiprehberger/rb-lock-kit
35
35
  changelog_uri: https://github.com/philiprehberger/rb-lock-kit/blob/main/CHANGELOG.md
36
36
  bug_tracker_uri: https://github.com/philiprehberger/rb-lock-kit/issues
@@ -53,5 +53,6 @@ requirements: []
53
53
  rubygems_version: 3.5.22
54
54
  signing_key:
55
55
  specification_version: 4
56
- summary: File-based and PID locking for process coordination
56
+ summary: File-based and PID locking for process coordination with stale lock detection,
57
+ read-write locks, and lock owner identification
57
58
  test_files: []