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 +4 -4
- data/CHANGELOG.md +10 -0
- data/README.md +1 -1
- data/lib/philiprehberger/lock_kit/version.rb +1 -1
- metadata +6 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 00027e34019a2945cc1d0cdb7814856d850735edbb603d2bc56bf3bbd1c6dee3
|
|
4
|
+
data.tar.gz: 57ce5708b9dc2000720334da4a7b55281331e374942d7b24887d33ef36e622df
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
[](https://rubygems.org/gems/philiprehberger-lock_kit)
|
|
5
5
|
[](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
|
|
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.
|
|
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-
|
|
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://
|
|
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://
|
|
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: []
|