enveloperb 0.1.7.1.gff4b650-x86_64-linux → 0.3.0.1.gb49ac06-x86_64-linux

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: a998507cb87b1644292d2b56100d12464f92068235cb52afa4b66d39dc5a97d6
4
- data.tar.gz: bf4ef26aaa33cd9cd2a1196b1188abd1c22db580d7164f38a4b7ac08cfafffa5
3
+ metadata.gz: a28b97b2cba1eab782740b431388e9b66ab39cf764afb94a4202eb4e4c5f9ec3
4
+ data.tar.gz: 30969e9a6b81753dd5bc477ca5b6cfecce4c736d9bbe7099ad755197f7ecb6b5
5
5
  SHA512:
6
- metadata.gz: fd225236dc6863573389d6b60b3e057850e12e403714152739d4261249ad04fa2fe8bd8a1436fd53c761b9dd419b39f6243915937f78f22bb415827fb441c184
7
- data.tar.gz: b41e6ccc1c5d9072afe32a8a4fe436ec0979f5ed16464ccef2a8c0cec2ec72c5a3e522f111dc0b807444bf99ee7ca1f48e5338389a5cf6e30947d82f525882a9
6
+ metadata.gz: 945e46630f4ba713fc44417bd3e62ac3613e27a0692e198ff8a2d3c71a63c7847a87a16e47191c8252deb6bfaab2b8810d0abc47bf8b5c5f027fef3bbceaba84
7
+ data.tar.gz: ddd19deba6e83a91d42224e47266f7e0be4944f72bbae22f8b34ba4e966826f3adc1a5dec98cccb608145ef9cf536b8ba2ab39f25dfc8b2d05d2644dee4951ec
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,17 @@ 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
+
34
+ unless ENV.key?("GVB_VERSION_OVERRIDE")
35
+ s.add_runtime_dependency 'rb_sys', '~> 0.1'
36
+ end
37
+
27
38
  s.add_development_dependency 'bundler'
28
39
  s.add_development_dependency 'github-release'
29
40
  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" }
Binary file
Binary file
Binary file
@@ -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.1.7.1.gff4b650
4
+ version: 0.3.0.1.gb49ac06
5
5
  platform: x86_64-linux
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-06-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -185,6 +185,7 @@ executables: []
185
185
  extensions: []
186
186
  extra_rdoc_files: []
187
187
  files:
188
+ - CODEOWNERS
188
189
  - CODE_OF_CONDUCT.md
189
190
  - CONTRIBUTING.md
190
191
  - LICENCE
@@ -202,9 +203,15 @@ files:
202
203
  - lib/enveloperb/awskms.rb
203
204
  - lib/enveloperb/encrypted_record.rb
204
205
  - lib/enveloperb/simple.rb
205
- homepage: https://github.com/cipherstash/enveloperb
206
+ homepage: https://cipherstash.com
206
207
  licenses: []
207
- metadata: {}
208
+ metadata:
209
+ homepage_uri: https://cipherstash.com
210
+ source_code_uri: https://github.com/cipherstash/enveloperb
211
+ changelog_uri: https://github.com/cipherstash/enveloperb/releases
212
+ bug_tracker_uri: https://github.com/cipherstash/enveloperb/issues
213
+ documentation_uri: https://rubydoc.info/gems/enveloperb
214
+ mailing_list_uri: https://discuss.cipherstash.com
208
215
  post_install_message:
209
216
  rdoc_options: []
210
217
  require_paths: