fastlane-plugin-aws_device_farm 0.3.4 → 0.3.5.pre.alpha.pre.66

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
- SHA1:
3
- metadata.gz: 991a7cc744bb09bc4091519b46f1b15b76f9f6fd
4
- data.tar.gz: 5fbb26470b4a518030ba84dca7700b128df60c37
2
+ SHA256:
3
+ metadata.gz: 789e14181a324d640073aa22d6aedffa8db5c9efd62c612c7301cea8b09655a4
4
+ data.tar.gz: 8cb76df2726b0b548da6bbeb5a17c51ae3aa52b873ac487d928233b25a604acd
5
5
  SHA512:
6
- metadata.gz: 4d29aeac0672a309d0b13db070ba7ff8a68a0e9154b53e173282bc2b7676f757476c0cc678341c03fc34c887aaa120b4fdcc5e91cd0da0055a4ba56e67dd4e7c
7
- data.tar.gz: 2ef970046c9a3e2feb0e6036798e1892eb4b5895aa3cf286d627b2cb77adc90860fd2ccb809f10e791cf3aaf6556a124ba803ee252ac15407fffc6316e207fc9
6
+ metadata.gz: 7215936b64ba8c13c8979de1e54e3074e751698cc5554e6d8ce461ba76d16b0a5e66bf3af6f98d95813e9dc70d7e8bf562ffa5aa3b6511bbbb92db9d6ac612f1
7
+ data.tar.gz: 0fe95df973e288d6291d544966704cae67cc9d1573ded471089f048f0dc4fde68f6d7b7725775e191ea2dec1cc52941a482889af958690fc0f85074f9db2b39a
@@ -222,6 +222,14 @@ module Fastlane
222
222
  is_string: true,
223
223
  optional: true,
224
224
  default_value: ''
225
+ ),
226
+ FastlaneCore::ConfigItem.new(
227
+ key: :billing_method,
228
+ env_name: 'FL_AWS_DEVICE_FARM_BILLING_METHOD',
229
+ description: 'Specify the billing method for the run',
230
+ is_string: true,
231
+ optional: true,
232
+ default_value: 'METERED' # accepts METERED, UNMETERED
225
233
  )
226
234
  ]
227
235
  end
@@ -305,12 +313,17 @@ module Fastlane
305
313
  test_hash[:filter] = params[:filter]
306
314
  end
307
315
 
316
+ configuration_hash = {
317
+ }
318
+ configuration_hash[:billing_method] = params[:billing_method]
319
+
308
320
  @client.schedule_run({
309
321
  name: name,
310
322
  project_arn: project.arn,
311
323
  app_arn: upload.arn,
312
324
  device_pool_arn: device_pool.arn,
313
- test: test_hash
325
+ test: test_hash,
326
+ configuration: configuration_hash
314
327
  }).run
315
328
  end
316
329
 
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module AwsDeviceFarm
3
- VERSION = "0.3.4"
3
+ VERSION = "0.3.5"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-aws_device_farm
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.4
4
+ version: 0.3.5.pre.alpha.pre.66
5
5
  platform: ruby
6
6
  authors:
7
7
  - Helmut Januschka
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-11-27 00:00:00.000000000 Z
11
+ date: 2018-03-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk
@@ -136,12 +136,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
136
136
  version: '0'
137
137
  required_rubygems_version: !ruby/object:Gem::Requirement
138
138
  requirements:
139
- - - ">="
139
+ - - ">"
140
140
  - !ruby/object:Gem::Version
141
- version: '0'
141
+ version: 1.3.1
142
142
  requirements: []
143
143
  rubyforge_project:
144
- rubygems_version: 2.6.8
144
+ rubygems_version: 2.7.6
145
145
  signing_key:
146
146
  specification_version: 4
147
147
  summary: Run UI Tests on AWS Devicefarm