fastlane-plugin-gmail 0.1.2 → 0.2.0
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: d39f6817bc73f90913dc7a0cf325a397501657c1613441c796683c63d6b2d120
|
|
4
|
+
data.tar.gz: d0b5b382b9b9046c4c26b50394a60c09c9aca283f96144468ed7b1ef791d76ae
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 27810618fcf8a37d2d5b8925abff87734d5cd1f955fdfd50e2564690a2d5e3e3ba527b1d6e0ab2e13340c2f327702a52b81f488134493fe2b694545d052348ee
|
|
7
|
+
data.tar.gz: ac67c86248afbf72a6082025b5908b0d367bce505b0653c575abd30f3b38a4c7919770652890757ae728d66ef878b652b37681ed291e61575469ab904b1affaf
|
|
@@ -26,6 +26,7 @@ module Fastlane
|
|
|
26
26
|
Mail.deliver do
|
|
27
27
|
from params[:username]
|
|
28
28
|
to params[:to]
|
|
29
|
+
cc params[:cc]
|
|
29
30
|
subject params[:subject]
|
|
30
31
|
html_part do
|
|
31
32
|
content_type 'text/html; charset=UTF-8'
|
|
@@ -80,6 +81,11 @@ module Fastlane
|
|
|
80
81
|
verify_block: proc do |value|
|
|
81
82
|
UI.user_error!("No recipients") if value.to_s.length == 0
|
|
82
83
|
end),
|
|
84
|
+
FastlaneCore::ConfigItem.new(key: :cc,
|
|
85
|
+
env_name: "FL_GMAIL_CC",
|
|
86
|
+
description: "Mail cc recipients",
|
|
87
|
+
sensitive: true,
|
|
88
|
+
is_string: false),
|
|
83
89
|
FastlaneCore::ConfigItem.new(key: :subject,
|
|
84
90
|
env_name: "FL_GMAIL_SUBJECT",
|
|
85
91
|
description: "The subject of the email",
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fastlane-plugin-gmail
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Alexander Ignition
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2021-05-26 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: mail
|
|
@@ -152,8 +152,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
152
152
|
- !ruby/object:Gem::Version
|
|
153
153
|
version: '0'
|
|
154
154
|
requirements: []
|
|
155
|
-
|
|
156
|
-
rubygems_version: 2.7.7
|
|
155
|
+
rubygems_version: 3.0.3
|
|
157
156
|
signing_key:
|
|
158
157
|
specification_version: 4
|
|
159
158
|
summary: send mail from gmail
|