fastlane-plugin-gmail_notify 0.1.1 → 0.1.2

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
2
  SHA256:
3
- metadata.gz: a65c983d4b84841241522deef085b6e5be94d8c66378b799de2adf71db1a7d8f
4
- data.tar.gz: c810ff562a4206036e8489f73aa7dfce69e6c9108e498d03df3802a6b37a2aa4
3
+ metadata.gz: 11eb92c91ec2c321fd6bb98a34eea0344bf2d47d4bdf9360a73c8b792642ad60
4
+ data.tar.gz: f50b36732ce423bfefe9b247b727103b36dcc13d233fdcfedaf09ee1c32a92c2
5
5
  SHA512:
6
- metadata.gz: 90bd144efbe4052a6c87c9689ec4e66f628f2a2dac68746634e4dae414ef68c8077c0045fb33d4012256047499ed098b688e60803904e41134673dd4db8c3f55
7
- data.tar.gz: 006cbd2d1d56671fdda86f21b4db19c1043ab4ac901d72df76dce69afccbddfa37d3417a28c61287539550dfbdc068c085f4c28556b70d910960dac737f9b861
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[:sender_email],
28
- password: params[:sender_password],
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: :sender_email,
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: :sender_password,
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,
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module GmailNotify
3
- VERSION = "0.1.1"
3
+ VERSION = "0.1.2"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-gmail_notify
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Antony Leons