philiprehberger-cache_kit 0.3.3 → 0.3.6
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 +16 -0
- data/README.md +20 -2
- data/lib/philiprehberger/cache_kit/version.rb +1 -1
- data/lib/philiprehberger/cache_kit.rb +8 -8
- 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: 399924703fbbe6a8d9931ec8884568c8cdad618edca20e610f55994d0a35868c
|
|
4
|
+
data.tar.gz: 99d3bb6a731d127bbc055adba8ec155f3257e28fcbfcd3d96b20208425bd4f65
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5c5ab63a522156b6ced53634720a547698b5aba04968b42fa2fc4ebe437b4d99f081e58937d8c90027e5c9b6f5ac5db77b0ea60cddb79090031c1395aa11c2e7
|
|
7
|
+
data.tar.gz: 8c550d36d5cf8e52200708e93c85de778c8df36cb25f205a71baf2edf90ad59a68b29de20063692d92c0a58da4cb7dc2a75caca5abb4e4f6f5274e725a9e7967
|
data/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.3.6] - 2026-03-31
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
- Standardize README badges, support section, and license format
|
|
14
|
+
|
|
15
|
+
## [0.3.5] - 2026-03-26
|
|
16
|
+
|
|
17
|
+
### Changed
|
|
18
|
+
|
|
19
|
+
- Add Sponsor badge and fix License link format in README
|
|
20
|
+
|
|
21
|
+
## [0.3.4] - 2026-03-24
|
|
22
|
+
|
|
23
|
+
### Changed
|
|
24
|
+
- Expand test coverage to 65+ examples covering edge cases and error paths
|
|
25
|
+
|
|
10
26
|
## [0.3.3] - 2026-03-24
|
|
11
27
|
|
|
12
28
|
### Fixed
|
data/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://github.com/philiprehberger/rb-cache-kit/actions/workflows/ci.yml)
|
|
4
4
|
[](https://rubygems.org/gems/philiprehberger-cache_kit)
|
|
5
|
-
[](https://github.com/philiprehberger/rb-cache-kit/commits/main)
|
|
6
6
|
|
|
7
7
|
In-memory LRU cache with TTL, tags, and thread safety
|
|
8
8
|
|
|
@@ -197,6 +197,24 @@ bundle exec rspec
|
|
|
197
197
|
bundle exec rubocop
|
|
198
198
|
```
|
|
199
199
|
|
|
200
|
+
## Support
|
|
201
|
+
|
|
202
|
+
If you find this project useful:
|
|
203
|
+
|
|
204
|
+
⭐ [Star the repo](https://github.com/philiprehberger/rb-cache-kit)
|
|
205
|
+
|
|
206
|
+
🐛 [Report issues](https://github.com/philiprehberger/rb-cache-kit/issues?q=is%3Aissue+is%3Aopen+label%3Abug)
|
|
207
|
+
|
|
208
|
+
💡 [Suggest features](https://github.com/philiprehberger/rb-cache-kit/issues?q=is%3Aissue+is%3Aopen+label%3Aenhancement)
|
|
209
|
+
|
|
210
|
+
❤️ [Sponsor development](https://github.com/sponsors/philiprehberger)
|
|
211
|
+
|
|
212
|
+
🌐 [All Open Source Projects](https://philiprehberger.com/open-source-packages)
|
|
213
|
+
|
|
214
|
+
💻 [GitHub Profile](https://github.com/philiprehberger)
|
|
215
|
+
|
|
216
|
+
🔗 [LinkedIn Profile](https://www.linkedin.com/in/philiprehberger)
|
|
217
|
+
|
|
200
218
|
## License
|
|
201
219
|
|
|
202
|
-
MIT
|
|
220
|
+
[MIT](LICENSE)
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
-
require_relative
|
|
4
|
-
require_relative
|
|
5
|
-
require_relative
|
|
6
|
-
require_relative
|
|
7
|
-
require_relative
|
|
8
|
-
require_relative
|
|
9
|
-
require_relative
|
|
10
|
-
require_relative
|
|
3
|
+
require_relative 'cache_kit/version'
|
|
4
|
+
require_relative 'cache_kit/entry'
|
|
5
|
+
require_relative 'cache_kit/callbacks'
|
|
6
|
+
require_relative 'cache_kit/tag_stats'
|
|
7
|
+
require_relative 'cache_kit/batch'
|
|
8
|
+
require_relative 'cache_kit/serializable'
|
|
9
|
+
require_relative 'cache_kit/eviction'
|
|
10
|
+
require_relative 'cache_kit/store'
|
|
11
11
|
|
|
12
12
|
module Philiprehberger
|
|
13
13
|
module CacheKit
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: philiprehberger-cache_kit
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.6
|
|
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: A lightweight, thread-safe in-memory LRU cache with TTL expiration and
|
|
14
14
|
tag-based bulk invalidation for Ruby applications.
|