credentials_manager 0.8.3 → 0.8.4
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 +4 -4
- data/lib/credentials_manager/account_manager.rb +1 -1
- data/lib/credentials_manager/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: af43c6e4d81c06dcb4cb453c4f6662d2ead7ee6e
|
4
|
+
data.tar.gz: d34c1a54872056bff8f1283a6b9a1afc795242dd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 11678528bf77902a5a0e94df096ab5f2e9c4dc503239d159a5822ccdf51573a33eaf87c10b157e9de69e6b57cae23434f07fb1bce50b52d256c47ffcd55b44cb
|
7
|
+
data.tar.gz: 130f8f4933ba2d518428f4f4cf558e2622d12088c5bf6d506c78b840a17186319cf2e91c885766493df2e1fb36d56efe516bd5f5fa555851f7170ec497683371
|
@@ -58,7 +58,7 @@ module CredentialsManager
|
|
58
58
|
end
|
59
59
|
|
60
60
|
return true if ENV["FASTLANE_DONT_STORE_PASSWORD"]
|
61
|
-
return true
|
61
|
+
return true if (/darwin/ =~ RUBY_PLATFORM).nil? # mac?, since we don't have access to the helper here
|
62
62
|
|
63
63
|
# Now we store this information in the keychain
|
64
64
|
if Security::InternetPassword.add(server_name, user, password)
|