ask-graph 0.7.0 → 0.7.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8035b4d2c2a93881c2733cb41e33696fe6e7403b2233a709c89ac75e1035323a
4
- data.tar.gz: 04c96e95ec9b0afa00133f100627250ae26dc87d9208be62b22246f80548eaa7
3
+ metadata.gz: f25d9d9ca750cdb41cc6209ac0adf69346fc3da74a4a2a1cde787e27b13c81c3
4
+ data.tar.gz: 521f8841441fdf6efa497502588c772ace146585aa8ae1221f735d6838ee0429
5
5
  SHA512:
6
- metadata.gz: 3a365f235bb392a4be69981dd816bc6f961ea68a1fe740e094fe07a4b1a5f7f39839261ba75784b5028a6a82b7add2351e9f10c97695a7a9edeb00b512cf4d67
7
- data.tar.gz: fabd27780966a9877e4a17b014388fcad7c3c57fdfbe9df8bc433ba15d05960fe3542f09c6f9501e388d147197a5d84c85964b59646f3b245a44cdb03ba13a6d
6
+ metadata.gz: b23119776fe5892d3574c5fe0a9721742128b52a6205ee8d2b1fd5c457b9dc7b13a1a0dddc8a99bfda9d533e58a12dd4045f125b42c36b7b4f3e385b5006e5e0
7
+ data.tar.gz: 40943d5fc7cf5e09ad3cc6d676220141b93e88d8995b178a11a3a4130c12d5c9d25126d1b9602f53d4d313cb71d01f3313e99aecc2a7afa0af77f25df92fa2bb
data/CHANGELOG.md CHANGED
@@ -1,3 +1,14 @@
1
+ ## [0.7.1] — 2026-07-31
2
+
3
+ ### Added
4
+
5
+ - **`storage=` setter** — assignment form of the class-level `storage` method,
6
+ convenient in initializers: `Ask::Graph.storage = RedisPool.new`.
7
+
8
+ ### Tested
9
+
10
+ - 96 tests, 130 assertions, 0 failures
11
+
1
12
  ## [0.7.0] — 2026-07-31
2
13
 
3
14
  ### Added
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Ask
4
4
  class Graph
5
- VERSION = "0.7.0"
5
+ VERSION = "0.7.1"
6
6
  end
7
7
  end
data/lib/ask/graph.rb CHANGED
@@ -169,6 +169,12 @@ module Ask
169
169
  end
170
170
  end
171
171
 
172
+ # Assignment form of {#storage} — convenient in initializers:
173
+ # Ask::Graph.storage = RedisPool.new
174
+ def storage=(store)
175
+ @storage = store
176
+ end
177
+
172
178
  # --- Lifecycle hooks ---
173
179
 
174
180
  def lifecycle_hooks
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ask-graph
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.0
4
+ version: 0.7.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kaka Ruto