key_vortex-stashify 0.2.4 → 1.0.0
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/.rubocop.yml +0 -4
- data/Gemfile.lock +4 -4
- data/README.md +20 -4
- data/key_vortex-stashify.gemspec +1 -1
- data/lib/key_vortex/adapter/stashify.rb +19 -0
- data/lib/key_vortex/stashify/version.rb +1 -1
- data/lib/key_vortex/stashify.rb +0 -7
- metadata +4 -5
- data/.reek.yml +0 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5b5f3d54cc8d0971c44d0d28a7d7fa809b487d5ae411e4abde547fba15729bf1
|
4
|
+
data.tar.gz: b49c189fed5f2271f80d6dad83d40a123c39cd9c40df9502de09eb7237937fdc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8e6712fa9691e942bf0fa21201389d5d9dd014f25ad3e5844bfee322fe3efb132b9d82da1c4f0a5619e44ef8087360f142db829b11dba1d242f0f08a8895e471
|
7
|
+
data.tar.gz: 5b973b8b2719fb6034ea5e9e81d4e2825944435908c47b46ed4ac4a5d9841abed840d2acdf487f763145f58dea6f0ecf18682402f1dbb42e8786ca5496e05bf0
|
data/.rubocop.yml
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
key_vortex-stashify (0.
|
5
|
-
key-vortex (~> 0.
|
4
|
+
key_vortex-stashify (1.0.0)
|
5
|
+
key-vortex (~> 1.0.0)
|
6
6
|
stashify (~> 3.2.1)
|
7
7
|
|
8
8
|
GEM
|
@@ -35,8 +35,8 @@ GEM
|
|
35
35
|
guard (~> 2.0)
|
36
36
|
rubocop (< 2.0)
|
37
37
|
json (2.6.3)
|
38
|
-
key-vortex (0.
|
39
|
-
key_vortex-contract (0.
|
38
|
+
key-vortex (1.0.0)
|
39
|
+
key_vortex-contract (1.0.0)
|
40
40
|
rantly (~> 2.0.0)
|
41
41
|
rspec (~> 3.0)
|
42
42
|
kwalify (0.7.2)
|
data/README.md
CHANGED
@@ -1,8 +1,6 @@
|
|
1
1
|
# KeyVortex::Stashify
|
2
2
|
|
3
|
-
|
4
|
-
|
5
|
-
TODO: Delete this and the text above, and describe your gem
|
3
|
+
This is an implementation of an adapter for [KeyVortex](https://github.com/lambda-Null/key-vortex/) allowing use of any file storage provider via [Stashify](https://github.com/Lambda-Null/stashify).
|
6
4
|
|
7
5
|
## Installation
|
8
6
|
|
@@ -22,7 +20,25 @@ Or install it yourself as:
|
|
22
20
|
|
23
21
|
## Usage
|
24
22
|
|
25
|
-
|
23
|
+
```ruby
|
24
|
+
require "key_vortex/adapter/stashify"
|
25
|
+
require "stashify/directory/local"
|
26
|
+
require "key_vortex/record"
|
27
|
+
|
28
|
+
class ExampleRecord < KeyVortex::Record
|
29
|
+
field :a, String, length: 100
|
30
|
+
end
|
31
|
+
|
32
|
+
> vortex = KeyVortex.vortex(:stashify, ExampleRecord, stashify: Stashify::Directory::Local.new(path: "/tmp/demo"))
|
33
|
+
=>
|
34
|
+
#<KeyVortex:0x0000557c90244b88
|
35
|
+
> vortex.save(ExampleRecord.new(key: "foo", a: "bar"))
|
36
|
+
> vortex.find("foo")
|
37
|
+
=> #<ExampleRecord:0x0000557c90ff5868 @values={:key=>"foo", :a=>"bar"}>
|
38
|
+
> vortex.remove("foo")
|
39
|
+
> vortex.find("foo")
|
40
|
+
=> nil
|
41
|
+
```
|
26
42
|
|
27
43
|
## Development
|
28
44
|
|
data/key_vortex-stashify.gemspec
CHANGED
@@ -29,7 +29,7 @@ Gem::Specification.new do |spec|
|
|
29
29
|
spec.require_paths = ["lib"]
|
30
30
|
|
31
31
|
# Uncomment to register a new dependency of your gem
|
32
|
-
spec.add_dependency "key-vortex", "~> 0.
|
32
|
+
spec.add_dependency "key-vortex", "~> 1.0.0"
|
33
33
|
spec.add_dependency "stashify", "~> 3.2.1"
|
34
34
|
|
35
35
|
# For more information and examples about making a new gem, checkout our
|
@@ -8,16 +8,28 @@ require "stashify/file"
|
|
8
8
|
|
9
9
|
class KeyVortex
|
10
10
|
class Adapter
|
11
|
+
# Implements a {https://rubydoc.info/gems/key-vortex/KeyVortex/Adapter KeyVortex Adapter}
|
12
|
+
# for {https://rubydoc.info/gems/stashify/Stashify/Directory Stashify Directories}.
|
13
|
+
# Sometimes file storage is all that's needed, going fancier just
|
14
|
+
# isn't necessary. By supporting Stashify's API, development can be
|
15
|
+
# done against local storage, but production systems can use the
|
16
|
+
# Blob storage for whatever provider makes the most sense.
|
11
17
|
class Stashify < KeyVortex::Adapter
|
18
|
+
# @param stashify [Stashify::Directory] The Stashify Directory which should be used
|
19
|
+
# @return [KeyVortex::Adapter::Stashify]
|
12
20
|
def self.build(stashify:)
|
13
21
|
new(stashify)
|
14
22
|
end
|
15
23
|
|
24
|
+
# @param stashify [Stashify::Directory] The Stashify Directory which should be used
|
16
25
|
def initialize(stashify)
|
17
26
|
super()
|
18
27
|
@stashify = stashify
|
19
28
|
end
|
20
29
|
|
30
|
+
# Write a record to the directory with the filename record.key
|
31
|
+
# and a json version of the record as its contents.
|
32
|
+
# @param record [KeyVortex::Record] The record to be saved
|
21
33
|
def save(record)
|
22
34
|
@stashify.write(
|
23
35
|
::Stashify::File.new(
|
@@ -27,12 +39,19 @@ class KeyVortex
|
|
27
39
|
)
|
28
40
|
end
|
29
41
|
|
42
|
+
# Load the file with filename key, assuming that the contents of
|
43
|
+
# the file are a json version of the record.
|
44
|
+
# @param key [String]
|
45
|
+
# @return [KeyVortex::Record]
|
46
|
+
# @return [nil] if the file does not exist
|
30
47
|
def find(key)
|
31
48
|
return unless @stashify.exists?(key)
|
32
49
|
|
33
50
|
JSON.parse(@stashify.find(key).contents, create_additions: true)
|
34
51
|
end
|
35
52
|
|
53
|
+
# Delete the file with filename key
|
54
|
+
# @param key [String]
|
36
55
|
def remove(key)
|
37
56
|
@stashify.delete(key)
|
38
57
|
end
|
data/lib/key_vortex/stashify.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: key_vortex-stashify
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 1.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Lambda Null
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-07-
|
11
|
+
date: 2023-07-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: key-vortex
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.
|
19
|
+
version: 1.0.0
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 0.
|
26
|
+
version: 1.0.0
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: stashify
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -46,7 +46,6 @@ executables: []
|
|
46
46
|
extensions: []
|
47
47
|
extra_rdoc_files: []
|
48
48
|
files:
|
49
|
-
- ".reek.yml"
|
50
49
|
- ".rspec"
|
51
50
|
- ".rubocop.yml"
|
52
51
|
- CODE_OF_CONDUCT.md
|
data/.reek.yml
DELETED