fastlane-plugin-aws_s3 1.0.0 → 1.1.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
  SHA1:
3
- metadata.gz: a0b71d17903f7045ded444288ab4d579f658b6ae
4
- data.tar.gz: 9e8cc661d91204fcdbdffbbed76d08c68ae4d49d
3
+ metadata.gz: 806b38cc8d9a0825dfdb7135b3281b2660620aad
4
+ data.tar.gz: 1c7802d94b5f66509da33b13c18da40ddbf86fbd
5
5
  SHA512:
6
- metadata.gz: 31ee79f8b36a294738077cfca68ff75057065b9cfe134651dbd54df2683d5fa9281ebdef51ac2a4f7058b3b5d134e8a3d2840e282956605491c61a54e3b9d314
7
- data.tar.gz: 40d0bd830b8c6c34d152fe5016137a82b19e4866035f77e30b5d04f07f90f7702a0ae3139ecc787e0bd12fe4a6b37af1b99f3b6862d51d0c9af70936f89e43bf
6
+ metadata.gz: cd07700ceff102124a7cd7139938f6e9fa56a47acc2c0994e4a6d4a2a437a2dbf0db4ef88b885aef192d92c491c8254951c306fd09db85e7fd9b9a6753128a30
7
+ data.tar.gz: 400f364d4018fc7f9edf2c3f733054851e140caacf4ebae1839049329bb9b92be0d84a523595a5f63ec2fed18fbfdaeddd61be99dc46c3af04c11026c737de2b
@@ -39,6 +39,7 @@ module Fastlane
39
39
  params[:plist_template_path] = config[:plist_template_path]
40
40
  params[:plist_file_name] = config[:plist_file_name]
41
41
  params[:html_template_path] = config[:html_template_path]
42
+ params[:html_template_params] = config[:html_template_params]
42
43
  params[:html_file_name] = config[:html_file_name]
43
44
  params[:skip_html_upload] = config[:skip_html_upload]
44
45
  params[:html_in_folder] = config[:html_in_folder]
@@ -99,6 +100,7 @@ module Fastlane
99
100
  plist_template_path = params[:plist_template_path]
100
101
  plist_file_name = params[:plist_file_name]
101
102
  html_template_path = params[:html_template_path]
103
+ html_template_params = params[:html_template_params] || {}
102
104
  html_file_name = params[:html_file_name]
103
105
  generate_html_in_folder = params[:html_in_folder]
104
106
  version_template_path = params[:version_template_path]
@@ -194,7 +196,7 @@ module Fastlane
194
196
  bundle_id: bundle_id,
195
197
  bundle_version: bundle_version,
196
198
  title: title
197
- })
199
+ }.merge(html_template_params))
198
200
 
199
201
  # Creates version from template
200
202
  if version_template_path && File.exist?(version_template_path)
@@ -250,6 +252,7 @@ module Fastlane
250
252
  app_directory = params[:app_directory]
251
253
 
252
254
  html_template_path = params[:html_template_path]
255
+ html_template_params = params[:html_template_params] || {}
253
256
  html_file_name = params[:html_file_name]
254
257
  generate_html_in_folder = params[:html_in_folder]
255
258
  version_template_path = params[:version_template_path]
@@ -295,7 +298,7 @@ module Fastlane
295
298
  version_code: version_code,
296
299
  version_name: version_name,
297
300
  title: title
298
- })
301
+ }.merge(html_template_params))
299
302
 
300
303
  # Creates version from template
301
304
  if version_template_path && File.exist?(version_template_path)
@@ -486,6 +489,11 @@ module Fastlane
486
489
  env_name: "",
487
490
  description: "html erb template path",
488
491
  optional: true),
492
+ FastlaneCore::ConfigItem.new(key: :html_template_params,
493
+ env_name: "",
494
+ description: "additional params for use in the html template",
495
+ optional: true,
496
+ type: Hash),
489
497
  FastlaneCore::ConfigItem.new(key: :html_file_name,
490
498
  env_name: "",
491
499
  description: "uploaded html filename",
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module AwsS3
3
- VERSION = "1.0.0"
3
+ VERSION = "1.1.0"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-aws_s3
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Josh Holtz
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-07-31 00:00:00.000000000 Z
11
+ date: 2017-09-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk
@@ -150,3 +150,4 @@ signing_key:
150
150
  specification_version: 4
151
151
  summary: Upload IPA and APK to S3
152
152
  test_files: []
153
+ has_rdoc: