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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c5820077a118d1e5d9258d6ea8aa4f0da3604806e9f3c73a66f8f2028955fbab
4
- data.tar.gz: e49c2e7639f44f80b47f45dc405f7f809ea084175c77cc91b579194864943436
3
+ metadata.gz: 5b5f3d54cc8d0971c44d0d28a7d7fa809b487d5ae411e4abde547fba15729bf1
4
+ data.tar.gz: b49c189fed5f2271f80d6dad83d40a123c39cd9c40df9502de09eb7237937fdc
5
5
  SHA512:
6
- metadata.gz: 60c61f2acc27fbe2bd81250ca9260e46a49fe7c24a9cdf85557b461563f02ba1d8fd18c8931f14ca8ce55912ddf84ab1dad80ccb16b40d0641739dc1764efaeb
7
- data.tar.gz: 36ae0eebbd3d7483cfcb697502b57330d327161c2d2f4578bcf5d10ba97453ed2e43f52ca2b534d7ac699bca06a5fff5483eeb2166fbcf0917e875c779a2248a
6
+ metadata.gz: 8e6712fa9691e942bf0fa21201389d5d9dd014f25ad3e5844bfee322fe3efb132b9d82da1c4f0a5619e44ef8087360f142db829b11dba1d242f0f08a8895e471
7
+ data.tar.gz: 5b973b8b2719fb6034ea5e9e81d4e2825944435908c47b46ed4ac4a5d9841abed840d2acdf487f763145f58dea6f0ecf18682402f1dbb42e8786ca5496e05bf0
data/.rubocop.yml CHANGED
@@ -12,7 +12,3 @@ Style/StringLiteralsInInterpolation:
12
12
 
13
13
  Layout/LineLength:
14
14
  Max: 120
15
-
16
- # TODO: Remove once design is set
17
- Style/Documentation:
18
- Enabled: false
data/Gemfile.lock CHANGED
@@ -1,8 +1,8 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- key_vortex-stashify (0.2.4)
5
- key-vortex (~> 0.2.4)
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.2.4)
39
- key_vortex-contract (0.2.4)
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
- 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/stashify`. To experiment with that code, run `bin/console` for an interactive prompt.
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
- TODO: Write usage instructions here
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
 
@@ -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.2.4"
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
@@ -2,6 +2,6 @@
2
2
 
3
3
  class KeyVortex
4
4
  class Stashify
5
- VERSION = "0.2.4"
5
+ VERSION = "1.0.0"
6
6
  end
7
7
  end
@@ -1,10 +1,3 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  require_relative "stashify/version"
4
-
5
- class KeyVortex
6
- class Stashify
7
- class Error < StandardError; end
8
- # Your code goes here...
9
- end
10
- end
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.2.4
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-14 00:00:00.000000000 Z
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.2.4
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.2.4
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
@@ -1,4 +0,0 @@
1
- detectors:
2
- # TODO: Remove once design is set
3
- IrresponsibleModule:
4
- enabled: false