ejson 1.1.0 → 1.3.1

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: 71956dbd96c748cc82e53378c437512676b2a37c
4
- data.tar.gz: 5cf9ade58e4b63877719100ac37d78745f217097
2
+ SHA256:
3
+ metadata.gz: 387c6b13fbc8bd357a151b934677b2517cae857039c99be46b963025744d48c7
4
+ data.tar.gz: 3bbd3bd06533c7ef3118f23613bcd6dca2d5340650f60c8670e771b56a498fda
5
5
  SHA512:
6
- metadata.gz: b4ca13c71f6a52f2c24792106e641682dfa405206df2b0408dd72da70b5f55195ad2adb4cda311f0f2c1a099f0c90c64cca81ce181e9170cb22e2eca891fb25e
7
- data.tar.gz: 79e45b1081a2e6606dcb090555cf3081e8a17294fb71eadf3bc8da5c411d898b840dcd71eae53de77fe2ffc289df033cdef5e5fdc376bc4f69028c50522a2fe7
6
+ metadata.gz: 9f4a2e882bd889f230160b25546a43a0aefb1099653decb85b5a9f8613bf563fa5914ade878fbbbc111759a25e3ef95b1fa67f41606fac5086e2bd4829750e05
7
+ data.tar.gz: f12b500328e53dbe533a1406a3e99577785ec9b64a2603f851026602778598277bbfaea30fce39f73f19b4e8734c2f74bbb88fd7e6e158504747d715062312d7
data/bin/ejson CHANGED
@@ -2,8 +2,11 @@
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 aarch64/ ; "linux-arm64"
8
+ when /^Linux.*64/ ; "linux-amd64"
9
+ when /^FreeBSD.*64/ ; "freebsd-amd64"
7
10
  else
8
11
  abort "Ejson is not supported on your platform."
9
12
  end
Binary file
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.1.0"
2
+ VERSION = "1.3.1"
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.1.0
4
+ version: 1.3.1
5
5
  platform: ruby
6
6
  authors:
7
- - Burke Libbey
7
+ - Shopify
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-08-22 00:00:00.000000000 Z
11
+ date: 2022-01-10 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,7 +22,10 @@ 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
28
+ - build/linux-arm64/ejson
26
29
  - ejson.gemspec
27
30
  - lib/ejson/version.rb
28
31
  - man/man1/ejson-decrypt.1.gz
@@ -49,8 +52,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
49
52
  - !ruby/object:Gem::Version
50
53
  version: '0'
51
54
  requirements: []
52
- rubyforge_project:
53
- rubygems_version: 2.6.10
55
+ rubygems_version: 3.2.32
54
56
  signing_key:
55
57
  specification_version: 4
56
58
  summary: Asymmetric keywise encryption for JSON