enveloperb 0.2.0 → 0.3.0

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: 7bcaf4d70926a9f7dd58167104bff374ddf6907b3e863b3265b602195becccd9
4
- data.tar.gz: 91ffc9fc23407b998bdcdeeac91e406e311f4b1b5233806dce9d2b543f31abb4
3
+ metadata.gz: dfb82f4b6371c1435b7f2307d1db09cf6a44f421b8acb16a3a9b1979498e6702
4
+ data.tar.gz: 1c39075376d72a7dfb9fafb36e3d9c6bcd27a526f0e78cedfebd8a182f85b8a4
5
5
  SHA512:
6
- metadata.gz: 6e2e38f714afe1158f70fba54da6788206e742e16612fefc5605ecb5dbeaf3ddd75ab81f2dcf8a862d50a479abd8bd466cb1a0add6181ef79ccbaf39260ecb70
7
- data.tar.gz: 2917744a8b01915ea2ce63ec7ec655fe7c84f0752b1384b44c86ea33e6579352784b11dad922d77638d68705e45bbdc978566756c8a74090cbf97e103b863d23
6
+ metadata.gz: bbdfa1ea2c5756fc2827b0c1251cf948fe61af035346c5af5623f1375608e3aff0e2e7f88d21866baedc42b2a64bf10fb28d0bc8a26f857d9d44d40992c6a841
7
+ data.tar.gz: 4901b62d8cb6ce7a30f504fda910078fb6303d715a1f7c4306b69465907768d13905f6a3daa92e6b18f636a2d617883d6bf18b488090e857b1e2f9c6af9b334d
data/CODEOWNERS ADDED
@@ -0,0 +1,2 @@
1
+ * @cipherstash/ruby
2
+ *.rs @cipherstash/rust
data/enveloperb.gemspec CHANGED
@@ -16,7 +16,7 @@ Gem::Specification.new do |s|
16
16
 
17
17
  s.authors = ["Matt Palmer"]
18
18
  s.email = ["matt@cipherstash.com"]
19
- s.homepage = "https://github.com/cipherstash/enveloperb"
19
+ s.homepage = "https://cipherstash.com"
20
20
 
21
21
  s.files = `git ls-files -z`.split("\0").reject { |f| f =~ /^(\.|G|spec|Rakefile)/ }
22
22
 
@@ -24,6 +24,13 @@ Gem::Specification.new do |s|
24
24
 
25
25
  s.required_ruby_version = ">= 2.7.0"
26
26
 
27
+ s.metadata["homepage_uri"] = s.homepage
28
+ s.metadata["source_code_uri"] = "https://github.com/cipherstash/enveloperb"
29
+ s.metadata["changelog_uri"] = "https://github.com/cipherstash/enveloperb/releases"
30
+ s.metadata["bug_tracker_uri"] = "https://github.com/cipherstash/enveloperb/issues"
31
+ s.metadata["documentation_uri"] = "https://rubydoc.info/gems/enveloperb"
32
+ s.metadata["mailing_list_uri"] = "https://discuss.cipherstash.com"
33
+
27
34
  s.add_development_dependency 'bundler'
28
35
  s.add_development_dependency 'github-release'
29
36
  s.add_development_dependency 'guard-rspec'
@@ -556,9 +556,9 @@ dependencies = [
556
556
 
557
557
  [[package]]
558
558
  name = "envelopers"
559
- version = "0.1.2"
559
+ version = "0.2.0"
560
560
  source = "registry+https://github.com/rust-lang/crates.io-index"
561
- checksum = "1e015ae6b5a2ce41dc75155fd8e200d33a07d6627c6969c5e60e1e5ade18ed34"
561
+ checksum = "23dbd85a683aabc899b8d9d2c891077e0f5f9dd20ae62b989d038fc241ab9257"
562
562
  dependencies = [
563
563
  "aes-gcm",
564
564
  "async-trait",
@@ -4,7 +4,7 @@ version = "0.0.0"
4
4
  edition = "2021"
5
5
 
6
6
  [dependencies]
7
- envelopers = "^0.1.2"
7
+ envelopers = "0.2"
8
8
  lazy_static = "^0.2.2"
9
9
  rb-sys = "0.8.0"
10
10
  rutie = { git = "https://github.com/mpalmer/rutie", branch = "rb_sys" }
@@ -1,8 +1,6 @@
1
1
  module Enveloperb
2
2
  # An Enveloperb cryptography engine using an unprotected string as the wrapping key.
3
3
  #
4
- # @note this class is not intended for general-purpose use.
5
- #
6
4
  class Simple
7
5
  def self.new(k)
8
6
  unless k.is_a?(String) && k.encoding == Encoding::BINARY
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: enveloperb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matt Palmer
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-05-20 00:00:00.000000000 Z
11
+ date: 2022-05-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -186,6 +186,7 @@ extensions:
186
186
  - ext/enveloperb/extconf.rb
187
187
  extra_rdoc_files: []
188
188
  files:
189
+ - CODEOWNERS
189
190
  - CODE_OF_CONDUCT.md
190
191
  - CONTRIBUTING.md
191
192
  - LICENCE
@@ -200,9 +201,15 @@ files:
200
201
  - lib/enveloperb/awskms.rb
201
202
  - lib/enveloperb/encrypted_record.rb
202
203
  - lib/enveloperb/simple.rb
203
- homepage: https://github.com/cipherstash/enveloperb
204
+ homepage: https://cipherstash.com
204
205
  licenses: []
205
- metadata: {}
206
+ metadata:
207
+ homepage_uri: https://cipherstash.com
208
+ source_code_uri: https://github.com/cipherstash/enveloperb
209
+ changelog_uri: https://github.com/cipherstash/enveloperb/releases
210
+ bug_tracker_uri: https://github.com/cipherstash/enveloperb/issues
211
+ documentation_uri: https://rubydoc.info/gems/enveloperb
212
+ mailing_list_uri: https://discuss.cipherstash.com
206
213
  post_install_message:
207
214
  rdoc_options: []
208
215
  require_paths: