fastlane-plugin-gmail_notify 0.1.3 → 0.1.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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 13018242812fe23f0a5750965dcf0a0d213350f0c4e49f057d2355b0a0cf1ae5
|
|
4
|
+
data.tar.gz: 8681586314183993a48376ba3a6ef3b17da93d52b12b55d2120c518fee4eb4be
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c3145160cdb630ff00daaf6919a8757fcae55bf69982129d858e99c853bd6eba130a1601ffaf06fbbf622afe7801557de89a58c40440aa8fa397b235246f2f03
|
|
7
|
+
data.tar.gz: 496501aa3f6da39c042e711b21e09be81e83463f8be29e18ab3a3f6cc332baaa5899bdad374903bab7c9da8fedb434d3bfc48e6460c1d8a9fd2044d6f70e24b1
|
|
@@ -21,6 +21,7 @@ module Fastlane
|
|
|
21
21
|
cc: params[:cc],
|
|
22
22
|
subject: params[:subject],
|
|
23
23
|
html_body: body,
|
|
24
|
+
attachments: { "lintReport.html" => File.read(:lint_report) },
|
|
24
25
|
body_part_header: { content_disposition: "inline" },
|
|
25
26
|
via: :smtp,
|
|
26
27
|
via_options: {
|
|
@@ -101,6 +102,11 @@ module Fastlane
|
|
|
101
102
|
description: "Path of template file",
|
|
102
103
|
optional: false,
|
|
103
104
|
type: String),
|
|
105
|
+
FastlaneCore::ConfigItem.new(key: :lint_report,
|
|
106
|
+
env_name: "GMAIL_NOTIFY_LINT_REPORT_FILE",
|
|
107
|
+
description: "Path of lint report file",
|
|
108
|
+
optional: false,
|
|
109
|
+
type: String),
|
|
104
110
|
FastlaneCore::ConfigItem.new(key: :placeholders,
|
|
105
111
|
env_name: "GMAIL_NOTIFY_TEMPLATE_PLACEHOLDERS",
|
|
106
112
|
description: "Placeholders for email template",
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fastlane-plugin-gmail_notify
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Antony Leons
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2024-03-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: pony
|
|
@@ -164,7 +164,7 @@ dependencies:
|
|
|
164
164
|
- - ">="
|
|
165
165
|
- !ruby/object:Gem::Version
|
|
166
166
|
version: '0'
|
|
167
|
-
description:
|
|
167
|
+
description:
|
|
168
168
|
email: antonyleons@qburst.com
|
|
169
169
|
executables: []
|
|
170
170
|
extensions: []
|
|
@@ -180,7 +180,7 @@ homepage: https://github.com/antonio2904/fastlane-plugin-gmail_notify
|
|
|
180
180
|
licenses:
|
|
181
181
|
- MIT
|
|
182
182
|
metadata: {}
|
|
183
|
-
post_install_message:
|
|
183
|
+
post_install_message:
|
|
184
184
|
rdoc_options: []
|
|
185
185
|
require_paths:
|
|
186
186
|
- lib
|
|
@@ -195,8 +195,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
195
195
|
- !ruby/object:Gem::Version
|
|
196
196
|
version: '0'
|
|
197
197
|
requirements: []
|
|
198
|
-
rubygems_version: 3.
|
|
199
|
-
signing_key:
|
|
198
|
+
rubygems_version: 3.3.5
|
|
199
|
+
signing_key:
|
|
200
200
|
specification_version: 4
|
|
201
201
|
summary: Sends a mail using SMTP
|
|
202
202
|
test_files: []
|