philiprehberger-lock_kit 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 +4 -4
- data/CHANGELOG.md +5 -0
- data/README.md +14 -8
- data/lib/philiprehberger/lock_kit/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5e9223bca668d46d4e9c139b1c4544b8b8ab4ccdbde77875fa0eb0d4216d0fda
|
|
4
|
+
data.tar.gz: 90e7cd1584ed90317e8f6089c24bb9061b805ad0f7b6e6fb0dc062a923c55d37
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0f764f74476853234db8099058c94cc56b4903801a966a489ba52e8c7fe230fca345f8332585d251c219a618c0c8d06c4e93d675ce5359065b5034310ed44dfd
|
|
7
|
+
data.tar.gz: 7f09d19315d412450f80a919ea602184b3368332630646f119b332ed6a64593dd59520d7dfc799e2508442b51d20f65b456620380b69d2b898277886bbfc754e
|
data/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.2.1] - 2026-03-31
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
- Standardize README badges, support section, and license format
|
|
14
|
+
|
|
10
15
|
## [0.2.0] - 2026-03-28
|
|
11
16
|
|
|
12
17
|
### Added
|
data/README.md
CHANGED
|
@@ -2,12 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://github.com/philiprehberger/rb-lock-kit/actions/workflows/ci.yml)
|
|
4
4
|
[](https://rubygems.org/gems/philiprehberger-lock_kit)
|
|
5
|
-
[](https://github.com/philiprehberger/rb-lock-kit/releases)
|
|
6
5
|
[](https://github.com/philiprehberger/rb-lock-kit/commits/main)
|
|
7
|
-
[](LICENSE)
|
|
8
|
-
[](https://github.com/philiprehberger/rb-lock-kit/issues?q=is%3Aissue+is%3Aopen+label%3Abug)
|
|
9
|
-
[](https://github.com/philiprehberger/rb-lock-kit/issues?q=is%3Aissue+is%3Aopen+label%3Aenhancement)
|
|
10
|
-
[](https://github.com/sponsors/philiprehberger)
|
|
11
6
|
|
|
12
7
|
File-based and PID locking for process coordination with stale lock detection, read-write locks, and lock owner identification.
|
|
13
8
|
|
|
@@ -189,10 +184,21 @@ bundle exec rubocop
|
|
|
189
184
|
|
|
190
185
|
## Support
|
|
191
186
|
|
|
192
|
-
If you find this
|
|
187
|
+
If you find this project useful:
|
|
193
188
|
|
|
194
|
-
[
|
|
195
|
-
|
|
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
|
|
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.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-
|
|
11
|
+
date: 2026-03-31 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.
|