memo_ttl 0.9.21 → 0.9.22

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +3 -0
  3. data/lib/memo_ttl/version.rb +1 -1
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6ba7210c4b45af27a52d7a6b86053ca2bdfc97929d2968803af7e15abfaa73c0
4
- data.tar.gz: 4306221408051fdd1308972bb553d4577d2c9ae41c28e47e1526ce391fb3f1dc
3
+ metadata.gz: 75898c349f0ca3581f83ead9ade417913ec665458d29f6d0f836de8c7ef35553
4
+ data.tar.gz: b3a76a50bcc61c146126664c7d2c67add71a90b7f92c03fbde9aa99ee4713cc2
5
5
  SHA512:
6
- metadata.gz: 236d78b10240f22e4d77773103aa38d02cc5ebe647bbb81166189df066bf28b3418a2ef5fb6720bee38336918f4b44e9f6cd4c63bcb7c445940d6d10ee1948b5
7
- data.tar.gz: 3bab4d3842a2ee8b22476080360a3c003e00dacbc95bcce88aa29e3463cc5f8d85eb41725742184f455396faca513e774c1224418799eb075e09ab50be40f01e
6
+ metadata.gz: f20a18bc3643ee4e1121b21b28307cfec37cea98148d6fdf32c178325d8cc28d8dc39c96d22e1ef049e1629a06b5da5190a57ab0b86122e291d818054456bac4
7
+ data.tar.gz: 2f4dfa70b8d470ccdde01083dc6dc1ae630ac7f2d09bea1da5c4885f46ba2762f80f0e0791740901536383fde06ba8b8553dd621150482362b92680d0a1d40d3
data/README.md CHANGED
@@ -1,3 +1,6 @@
1
+ [![Gem Version](https://badge.fury.io/rb/memo_ttl.svg)](https://rubygems.org/gems/memo_ttl)
2
+ [![Build Status](https://github.com/your_username/memo_ttl/workflows/test/badge.svg)](https://github.com/your_username/memo_ttl/actions)
3
+
1
4
  # MemoTTL
2
5
 
3
6
  **MemoTTL** is a thread-safe memoization utility for Ruby that supports TTL (Time-To-Live) and LRU (Least Recently Used) eviction. It's designed for scenarios where memoized values should expire after a period and memory usage must be constrained.
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module MemoTtl
4
- VERSION = "0.9.21"
4
+ VERSION = "0.9.22"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: memo_ttl
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.21
4
+ version: 0.9.22
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mishal Zaman