philiprehberger-lock_kit 0.2.1 → 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: 5e9223bca668d46d4e9c139b1c4544b8b8ab4ccdbde77875fa0eb0d4216d0fda
4
- data.tar.gz: 90e7cd1584ed90317e8f6089c24bb9061b805ad0f7b6e6fb0dc062a923c55d37
3
+ metadata.gz: 00027e34019a2945cc1d0cdb7814856d850735edbb603d2bc56bf3bbd1c6dee3
4
+ data.tar.gz: 57ce5708b9dc2000720334da4a7b55281331e374942d7b24887d33ef36e622df
5
5
  SHA512:
6
- metadata.gz: 0f764f74476853234db8099058c94cc56b4903801a966a489ba52e8c7fe230fca345f8332585d251c219a618c0c8d06c4e93d675ce5359065b5034310ed44dfd
7
- data.tar.gz: 7f09d19315d412450f80a919ea602184b3368332630646f119b332ed6a64593dd59520d7dfc799e2508442b51d20f65b456620380b69d2b898277886bbfc754e
6
+ metadata.gz: 658255f5a49295524d9a8bd72d4e5530f2cd194dac02d1f2c70b679106f0e4919b674c2fe2eba257d7c8af65c185516368a3d4c5b2643394427ce3e81b75a393
7
+ data.tar.gz: 71781478e3a427aeeb256b80582a96cb7c58c799b98aa60ccf10a66fd9ac59a632fe4c5fb7374a5c0f814870f9b212f7c99afdc5509696cd15c15de72343655c
data/CHANGELOG.md CHANGED
@@ -7,6 +7,16 @@ 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
+
10
20
  ## [0.2.1] - 2026-03-31
11
21
 
12
22
  ### Changed
data/README.md CHANGED
@@ -4,7 +4,7 @@
4
4
  [![Gem Version](https://badge.fury.io/rb/philiprehberger-lock_kit.svg)](https://rubygems.org/gems/philiprehberger-lock_kit)
5
5
  [![Last updated](https://img.shields.io/github/last-commit/philiprehberger/rb-lock-kit)](https://github.com/philiprehberger/rb-lock-kit/commits/main)
6
6
 
7
- 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
8
8
 
9
9
  ## Requirements
10
10
 
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Philiprehberger
4
4
  module LockKit
5
- VERSION = '0.2.1'
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.1
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-31 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: []