ejson 1.0.2 → 1.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
- SHA1:
3
- metadata.gz: 6e503f60c541eedc4d58df023e710cadbda7eab3
4
- data.tar.gz: 87089d44e2726846a5781d72a062da856ff7a952
2
+ SHA256:
3
+ metadata.gz: 2684f048e5459ad61080c228a0fe34ee9d4b54217f98c51127616f763b02879d
4
+ data.tar.gz: 74b52eabe365ff9ef55a8fb487550a8cd366f6930206434b5520b6aadf20168d
5
5
  SHA512:
6
- metadata.gz: e7ec5f7682acb1d77c0b1ebba74dd540ca6fabdb3fbf5fe9031818d95f2b68443bccce940095d3251e14c2aef37adbf93ed9e894789561a85aeff06b003c0e3b
7
- data.tar.gz: b12d8275990f6f4c8111bbe2e97c29482fe36f17b8bb38ba5cf654bcc12cd34c0bd06b3ad52528e51d1cafc451d41cd466464b1027baff1c916584718b03c6c7
6
+ metadata.gz: 0b73a2e7f877c3a652af44fc760d3d2b47c8cd72ee47dbfcfd35e7450a5014af1b2887e20f6435e62fa29becb7fa6baefaa0d1bba873b3c2ed0c1cda6ca680c5
7
+ data.tar.gz: f3b6686afeca690eb7a38bfccc2dde9331c80dc4e47a6e3e961efdf46701815e96b117c62487c5e75cc5f0aa30470b9031e8910f9dfb9f567c082d6bcfda0e49
data/bin/ejson CHANGED
@@ -2,8 +2,10 @@
2
2
  platform = `uname -sm`
3
3
 
4
4
  dir = case platform
5
- when /^Darwin/ ; "darwin-amd64"
6
- when /^Linux.*64/ ; "linux-amd64"
5
+ when /^Darwin arm64/; "darwin-arm64"
6
+ when /^Darwin/ ; "darwin-amd64"
7
+ when /^Linux.*64/ ; "linux-amd64"
8
+ when /^FreeBSD.*64/ ; "freebsd-amd64"
7
9
  else
8
10
  abort "Ejson is not supported on your platform."
9
11
  end
Binary file
Binary file
Binary file
Binary file
data/ejson.gemspec CHANGED
@@ -6,8 +6,8 @@ files = File.read("MANIFEST").lines.map(&:chomp)
6
6
  Gem::Specification.new do |spec|
7
7
  spec.name = "ejson"
8
8
  spec.version = EJSON::VERSION
9
- spec.authors = ["Burke Libbey"]
10
- spec.email = ["burke.libbey@shopify.com"]
9
+ spec.authors = ["Shopify"]
10
+ spec.email = ["admins@shopify.com"]
11
11
  spec.summary = %q{Asymmetric keywise encryption for JSON}
12
12
  spec.description = %q{Secret management by encrypting values in a JSON hash with a public/private keypair}
13
13
  spec.homepage = "https://github.com/Shopify/ejson"
data/lib/ejson/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module EJSON
2
- VERSION = "1.0.2"
2
+ VERSION = "1.3.0"
3
3
  end
Binary file
Binary file
Binary file
data/man/man1/ejson.1.gz CHANGED
Binary file
data/man/man5/ejson.5.gz CHANGED
Binary file
metadata CHANGED
@@ -1,19 +1,19 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ejson
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 1.3.0
5
5
  platform: ruby
6
6
  authors:
7
- - Burke Libbey
8
- autorequire:
7
+ - Shopify
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-10-31 00:00:00.000000000 Z
11
+ date: 2021-07-14 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Secret management by encrypting values in a JSON hash with a public/private
14
14
  keypair
15
15
  email:
16
- - burke.libbey@shopify.com
16
+ - admins@shopify.com
17
17
  executables:
18
18
  - ejson
19
19
  extensions: []
@@ -22,6 +22,8 @@ files:
22
22
  - LICENSE.txt
23
23
  - bin/ejson
24
24
  - build/darwin-amd64/ejson
25
+ - build/darwin-arm64/ejson
26
+ - build/freebsd-amd64/ejson
25
27
  - build/linux-amd64/ejson
26
28
  - ejson.gemspec
27
29
  - lib/ejson/version.rb
@@ -34,7 +36,7 @@ homepage: https://github.com/Shopify/ejson
34
36
  licenses:
35
37
  - MIT
36
38
  metadata: {}
37
- post_install_message:
39
+ post_install_message:
38
40
  rdoc_options: []
39
41
  require_paths:
40
42
  - lib
@@ -49,9 +51,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
49
51
  - !ruby/object:Gem::Version
50
52
  version: '0'
51
53
  requirements: []
52
- rubyforge_project:
53
- rubygems_version: 2.4.5.1
54
- signing_key:
54
+ rubygems_version: 3.2.20
55
+ signing_key:
55
56
  specification_version: 4
56
57
  summary: Asymmetric keywise encryption for JSON
57
58
  test_files: []