key-vortex 0.2.4 → 0.2.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: dc49e3b37bc928e227b99983919d05c1e2da5fc06a3c545229dbc8d26c4b3457
4
- data.tar.gz: a8356f1144d194f56818375243348aeffd0ed2221b99f9e39dea4610e8be335f
3
+ metadata.gz: 9696a877879c820dd96922f5f300b3367fae4cc7ce37c92db6efffe32e5f3f11
4
+ data.tar.gz: 46ac4d73acc9dbef6d60e767f8d0f8a0dcfd7a44baf56a874b60aaa3634cdc97
5
5
  SHA512:
6
- metadata.gz: 601d86c191a60adbb6015a66d5fdee969902c211f8c4f2071d5ef84f1014661e4d4fc4522d162260e629b630327674977288e081ec66a0b84d0e1cbdea4890b1
7
- data.tar.gz: 66416fd173dabd98442bd38164a8e79afdce5fd2e393d74068bee34f15d0dc4a7ac78b2534d8336729c742989a07e57421a21e2cacc5baad5b1d488bde3d155c
6
+ metadata.gz: e2401b6a3d3d73d7122054d7511c466865d12ae2572439c9aa3905c8a255e16b3aceeb38565c214ec33c991d6b8525252c35614273f96be094b50d155b8d3235
7
+ data.tar.gz: 9ad900f47bd8756ac9a9bdbd2d2810bc76d96660fdbecdad0c6762ee305b4ea7f4054610119b4fb752dbdb8aac52f1f76efc229e4c6dc735beecec51c7005650
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- key-vortex (0.2.4)
4
+ key-vortex (0.2.5)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
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
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  class KeyVortex
4
- VERSION = "0.2.4"
4
+ VERSION = "0.2.5"
5
5
  end
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
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: key-vortex
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.4
4
+ version: 0.2.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lambda Null