fastlane-plugin-gmail_notify 0.1.4 → 0.1.6

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: 13018242812fe23f0a5750965dcf0a0d213350f0c4e49f057d2355b0a0cf1ae5
4
- data.tar.gz: 8681586314183993a48376ba3a6ef3b17da93d52b12b55d2120c518fee4eb4be
3
+ metadata.gz: 7f697af7cbf78eeccdd7a5a0376c03acfb5fc823d9f5296d51b679f27db72304
4
+ data.tar.gz: 3fc4fc960c177b4f9cd71857fef1caf2ad9f1f15ddca7d9a6a6d57c61a63ea91
5
5
  SHA512:
6
- metadata.gz: c3145160cdb630ff00daaf6919a8757fcae55bf69982129d858e99c853bd6eba130a1601ffaf06fbbf622afe7801557de89a58c40440aa8fa397b235246f2f03
7
- data.tar.gz: 496501aa3f6da39c042e711b21e09be81e83463f8be29e18ab3a3f6cc332baaa5899bdad374903bab7c9da8fedb434d3bfc48e6460c1d8a9fd2044d6f70e24b1
6
+ metadata.gz: 436e25c959d5fda628020d5febb4b1236956df893b8368912a3d3e50f0644cd26e7b388f5c0ecf3b66e02e70d69dfaf7759e9cb7cff20bef920898a1fdb26048
7
+ data.tar.gz: e2113539b7a037a8a5366310a569842e3f7a75be9656c95ef060ae6b0ca81a4168db4098b75d9f6c6347e026a7aeb8e4054a87872681f2534bcfef7c5eabef2c
data/README.md CHANGED
@@ -28,6 +28,7 @@ gmail_notify(
28
28
  cc: "<cc>",
29
29
  subject: "<gmail subject>",
30
30
  template_file: "<path to mail template>",
31
+ lint_report: "<path to lint report html file>",
31
32
  placeholders: {
32
33
  var1: "world"
33
34
  }
@@ -46,6 +47,7 @@ The mail body is constructed using a [html template](template.html) file. The va
46
47
  | `cc` | Comma separated list of cc |
47
48
  | `subject` | Email subject |
48
49
  | `template_file` | Path to template file |
50
+ | `lint_report` | Path to lint report html file |
49
51
  | `placeholders` | Hash that contains value of variables in the template |
50
52
 
51
53
 
@@ -21,7 +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
+ attachments: { "lintReport.html" => File.read(params[:lint_report]) },
25
25
  body_part_header: { content_disposition: "inline" },
26
26
  via: :smtp,
27
27
  via_options: {
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module GmailNotify
3
- VERSION = "0.1.4"
3
+ VERSION = "0.1.6"
4
4
  end
5
5
  end
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
4
+ version: 0.1.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Antony Leons
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-03-21 00:00:00.000000000 Z
11
+ date: 2024-03-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: pony