minke 1.5.5 → 1.5.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +8 -8
- data/lib/minke/config/reader.rb +0 -3
- data/lib/minke/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
ZjRhZmE4ZmE0MmY4OGJlNTlmNjI1MDc1MGExY2JlMmRiOTBiMzk3Mw==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
MTFjMTJmZTVlMGM2ZmExNTYxODA5MjQ5NGZjZDA5MWEyMTYzODdkNg==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
YmQ4NDdiMDg3NTljYWMwOTcwMTg4Y2M2ZTEwNGNlNmJkNjcwMDAyMmFjNzAx
|
|
10
|
+
M2E1N2ViZTFlZDg4NzBmOWQ0OGMzYjgwZWE5NWUwZmFmMTBmODNiZDg0OWUy
|
|
11
|
+
ZmJkZGNlMjI0NWE0N2NkYzcwOGEwMzZjNjJiMjMxMDE2Y2I2ZGQ=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
NDQ1ZTAxYzA1NGFiMTMzOWZiNjhhYzlhZDNkY2UyYjQ0NzA0ZjAwYzViZDlj
|
|
14
|
+
ZGJlYzlhNjJiZDY2NDQ2NTEwOGUyOWE5Yzk2MmUxNWVjZTZhMjQ0NGZjYzJm
|
|
15
|
+
YzliY2U2NmY0YWE2MzkwNTFkY2YwZTcyZWJhYTA3NjBlOGRiMDI=
|
data/lib/minke/config/reader.rb
CHANGED
|
@@ -91,7 +91,6 @@ module Minke
|
|
|
91
91
|
end
|
|
92
92
|
|
|
93
93
|
def read_secure hash
|
|
94
|
-
puts hash.inspect
|
|
95
94
|
key_path = ENV['SSL_KEY_PATH'].to_s == '' ? "#{ENV['HOME']}/.ssh" : ENV['SSL_KEY_PATH']
|
|
96
95
|
|
|
97
96
|
fingerprint = hash['secure']['fingerprint']
|
|
@@ -100,8 +99,6 @@ module Minke
|
|
|
100
99
|
locator = Minke::Encryption::KeyLocator.new key_path
|
|
101
100
|
key_path = locator.locate_key fingerprint
|
|
102
101
|
|
|
103
|
-
puts key_path
|
|
104
|
-
|
|
105
102
|
encrypt = Minke::Encryption::Encryption.new key_path
|
|
106
103
|
encrypt.decrypt_string value
|
|
107
104
|
end
|
data/lib/minke/version.rb
CHANGED