fastlane-plugin-gmail 0.1.2 → 0.2.0

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: d439d1c8bda7cde0b8e3b19783a8f78b074127314717baca5474aec52ae1c430
4
- data.tar.gz: dead725efedba2b708023004726ef59ab791a7aa15bc452d00835b7d10afc15a
3
+ metadata.gz: d39f6817bc73f90913dc7a0cf325a397501657c1613441c796683c63d6b2d120
4
+ data.tar.gz: d0b5b382b9b9046c4c26b50394a60c09c9aca283f96144468ed7b1ef791d76ae
5
5
  SHA512:
6
- metadata.gz: ba2c18fc6a403ff092982eb2f555d7f8a906d1a8f56f4031af3ed1ac5cd7a8c08fbcc78d01e1333d4df0afae092389b7a2782c5dba6613192a07401fefa094da
7
- data.tar.gz: 5cc220b9f4cf54cffaa8cc847a9ef90b41a5eeb75fa10199e799cdcd8ba1e3911c4ff81652b92619595ef2304dc8f5223282a9354b8a2989da0860245b359db8
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",
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module Gmail
3
- VERSION = "0.1.2"
3
+ VERSION = "0.2.0"
4
4
  end
5
5
  end
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.1.2
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: 2019-01-12 00:00:00.000000000 Z
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
- rubyforge_project:
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