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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA256:
3
- metadata.gz: 05a14e712cde0b3dbb31b1125885125a5258e84aed307789a629bd6349184210
4
- data.tar.gz: 1fd5c14961f72c759fefadd6ae0e377d239ca7a098f579a02e0f80fdcd7d93a7
2
+ SHA1:
3
+ metadata.gz: e92c011838d0bb0b29442dd688be0af1790977b0
4
+ data.tar.gz: 6e541a1cf2df57a20e59ebd1c92e608bcc8df3b9
5
5
  SHA512:
6
- metadata.gz: 711308a311b66197246880e9afd034ad9fe8cb2caa056a764db5d88abf5e9ee8f3de59f223fbacf242f9d10397ec66d0c301735a9a15b002e5957820032ea182
7
- data.tar.gz: 2831b6485bdc4b95f95e6306342f6686a30c94df01865eeff5b5ce40e81577f7aaf2c096dcb1ca18c593e3f60ae8c73011355141446217c0dd142c2c3bc6fe3a
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) 2017 Envkey Inc. <support@envkey.com>
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
@@ -37,7 +37,13 @@ module Envkey::Platform
37
37
  end
38
38
 
39
39
  def self.arch_part
40
- ARCH == "x86_64" ? "amd64" : "386"
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
@@ -1,4 +1,4 @@
1
1
  module Envkey
2
- VERSION = "1.2.6"
2
+ VERSION = "1.2.7"
3
3
  ENVKEY_FETCH_VERSION="1.2.6"
4
4
  end
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.6
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: 2019-03-18 00:00:00.000000000 Z
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.7.4
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.