key-vortex 0.2.4 → 0.2.5
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/Gemfile.lock +1 -1
- data/README.md +5 -1
- data/lib/key_vortex/version.rb +1 -1
- data/lib/key_vortex.rb +4 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9696a877879c820dd96922f5f300b3367fae4cc7ce37c92db6efffe32e5f3f11
|
4
|
+
data.tar.gz: 46ac4d73acc9dbef6d60e767f8d0f8a0dcfd7a44baf56a874b60aaa3634cdc97
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e2401b6a3d3d73d7122054d7511c466865d12ae2572439c9aa3905c8a255e16b3aceeb38565c214ec33c991d6b8525252c35614273f96be094b50d155b8d3235
|
7
|
+
data.tar.gz: 9ad900f47bd8756ac9a9bdbd2d2810bc76d96660fdbecdad0c6762ee305b4ea7f4054610119b4fb752dbdb8aac52f1f76efc229e4c6dc735beecec51c7005650
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -34,7 +34,11 @@ In order to save the record somewhere, you'll need to choose an adapter. To keep
|
|
34
34
|
|
35
35
|
```
|
36
36
|
> require "key_vortex/adapter/memory"
|
37
|
-
|
37
|
+
> vortex = KeyVortex.vortex(:memory, ExampleRecord)
|
38
|
+
> vortex.save(ExampleRecord.new(key: "foo", a: "a", b: 10))
|
39
|
+
> vortex.find("foo")
|
40
|
+
=> #<ExampleRecord:0x0000560781f480b0 @values={:key=>"foo", :a=>"a", :b=>10}>
|
41
|
+
```
|
38
42
|
|
39
43
|
Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/key_vortex`. To experiment with that code, run `bin/console` for an interactive prompt.
|
40
44
|
|
data/lib/key_vortex/version.rb
CHANGED
data/lib/key_vortex.rb
CHANGED
@@ -11,7 +11,6 @@ class KeyVortex
|
|
11
11
|
end
|
12
12
|
|
13
13
|
def self.vortex(adapter_symbol, record_class, **options)
|
14
|
-
puts @adapter_registry
|
15
14
|
new(
|
16
15
|
@adapter_registry[adapter_symbol].build(**options),
|
17
16
|
record_class
|
@@ -41,4 +40,8 @@ class KeyVortex
|
|
41
40
|
def find(id)
|
42
41
|
@adapter.find(id)
|
43
42
|
end
|
43
|
+
|
44
|
+
def remove(id)
|
45
|
+
@adapter.remove(id)
|
46
|
+
end
|
44
47
|
end
|