fastlane-plugin-gmail_notify 0.1.1 → 0.1.2
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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 11eb92c91ec2c321fd6bb98a34eea0344bf2d47d4bdf9360a73c8b792642ad60
|
|
4
|
+
data.tar.gz: f50b36732ce423bfefe9b247b727103b36dcc13d233fdcfedaf09ee1c32a92c2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ab3580acfad95be0036c468be8ad0c0fc1b90f917fc87b1c1b9922485815632f4268f5fc182b5c1413f2cee771d5a4112bc511fc47c93f76d9fc7421c904108a
|
|
7
|
+
data.tar.gz: ee469e09ca07b1ef7a1128ac4c4e7d44bf5292c9f20f33f636c4d40b46f4999595ca22d30dc961f10a6354e08ed99d1968b2272dbb74964c6c07062d7ece5b13
|
|
@@ -24,8 +24,8 @@ module Fastlane
|
|
|
24
24
|
address: "smtp.gmail.com",
|
|
25
25
|
port: "587",
|
|
26
26
|
enable_starttls_auto: true,
|
|
27
|
-
user_name: params[:
|
|
28
|
-
password: params[:
|
|
27
|
+
user_name: params[:smtp_email],
|
|
28
|
+
password: params[:smtp_password],
|
|
29
29
|
authentication: :plain, # :plain, :login, :cram_md5, no auth by default
|
|
30
30
|
domain: "localhost.localdomain" # the HELO domain provided by the client to the server
|
|
31
31
|
}
|
|
@@ -59,12 +59,12 @@ module Fastlane
|
|
|
59
59
|
|
|
60
60
|
def self.available_options
|
|
61
61
|
[
|
|
62
|
-
FastlaneCore::ConfigItem.new(key: :
|
|
62
|
+
FastlaneCore::ConfigItem.new(key: :smtp_email,
|
|
63
63
|
env_name: "GMAIL_NOTIFY_SENDER_EMAIL",
|
|
64
64
|
description: "Gmail account to login with",
|
|
65
65
|
optional: false,
|
|
66
66
|
type: String),
|
|
67
|
-
FastlaneCore::ConfigItem.new(key: :
|
|
67
|
+
FastlaneCore::ConfigItem.new(key: :smtp_password,
|
|
68
68
|
env_name: "GMAIL_NOTIFY_SENDER_PASSWORD",
|
|
69
69
|
description: "Password of Gmail account to login with",
|
|
70
70
|
optional: false,
|