envkey 1.2.6 → 1.2.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/LICENSE.txt +1 -1
- data/lib/envkey/platform.rb +7 -1
- data/lib/envkey/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: e92c011838d0bb0b29442dd688be0af1790977b0
|
4
|
+
data.tar.gz: 6e541a1cf2df57a20e59ebd1c92e608bcc8df3b9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e0a1f9d1f9204b7fb6a6288215d16a2a344f8d33806a7877c2395bb162d8f55636916d2642599d10345c064c6beefe8eb532ec374fe8521ed086bd02b22a3d66
|
7
|
+
data.tar.gz: b3cdb8935339bb535289cfa606a34e699a652fee5fe0eef1cfc181c4f07150f085ada63a8af3610de199936167a7d560c47a73c8db32ea03bbdd001200663213
|
data/LICENSE.txt
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
The MIT License (MIT)
|
2
2
|
|
3
|
-
Copyright (c)
|
3
|
+
Copyright (c) 2021 Envkey Inc. <support@envkey.com>
|
4
4
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
6
|
of this software and associated documentation files (the "Software"), to deal
|
data/lib/envkey/platform.rb
CHANGED
@@ -37,7 +37,13 @@ module Envkey::Platform
|
|
37
37
|
end
|
38
38
|
|
39
39
|
def self.arch_part
|
40
|
-
|
40
|
+
# workaround for mac M1 chip until Go compiler supports it natively
|
41
|
+
# amd64 seems to work for now
|
42
|
+
if platform_part == "darwin" && ARCH == "arm"
|
43
|
+
"amd64"
|
44
|
+
else
|
45
|
+
ARCH == "x86_64" ? "amd64" : "386"
|
46
|
+
end
|
41
47
|
end
|
42
48
|
|
43
49
|
def self.ext
|
data/lib/envkey/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: envkey
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.2.
|
4
|
+
version: 1.2.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Dane Schneider
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-02-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -134,7 +134,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
134
134
|
version: '0'
|
135
135
|
requirements: []
|
136
136
|
rubyforge_project:
|
137
|
-
rubygems_version: 2.
|
137
|
+
rubygems_version: 2.6.14
|
138
138
|
signing_key:
|
139
139
|
specification_version: 4
|
140
140
|
summary: Envkey secures and simplifies app secrets and config.
|