xamarin-test-cloud 0.9.37 → 0.9.38
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 +4 -4
- data/README.md +1 -0
- data/lib/xamarin-test-cloud/cli.rb +9 -2
- data/lib/xamarin-test-cloud/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: abcb70f026155c146d290a041b9cd7342fe23dde
|
4
|
+
data.tar.gz: dc881fdb928b738262dc9a75938e53ecc7811a85
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 715630681e945d5edb6c268420e8aaf5a11ea4eee11b92972cb9cb5ff2d36b8913b87890c67e571a535d4fb31842cadb178041a70a3d78385a64add36f879067
|
7
|
+
data.tar.gz: 7cf78a4c8f993eceddca5337d0abfe89566076f40f0d233eb4e887e25495e44052c01bd4b25c514c34edefdd72ceec39e7848d4300f6351b27485ce63641ca26
|
data/README.md
CHANGED
@@ -0,0 +1 @@
|
|
1
|
+
Run ``rake -T`` to see the available Rake tasks.
|
@@ -23,7 +23,7 @@ module XamarinTestCloud
|
|
23
23
|
|
24
24
|
attr_accessor :host, :app, :api_key, :appname, :app_explorer, :test_parameters,
|
25
25
|
:workspace, :config, :profile, :skip_config_check, :dry_run,
|
26
|
-
:device_selection, :pretty, :async, :endpoint_path,
|
26
|
+
:device_selection, :pretty, :async, :priority, :endpoint_path,
|
27
27
|
:locale, :series,
|
28
28
|
:dsym
|
29
29
|
|
@@ -102,6 +102,11 @@ module XamarinTestCloud
|
|
102
102
|
:type => :boolean,
|
103
103
|
:default => false
|
104
104
|
|
105
|
+
method_option :priority,
|
106
|
+
:desc => "Run as priority test execution. Please note: This is only available for some tiers, and priority test executions cost double.",
|
107
|
+
:type => :boolean,
|
108
|
+
:default => false
|
109
|
+
|
105
110
|
method_option 'dry-run',
|
106
111
|
:desc => "Sanity check only, don't upload",
|
107
112
|
:aliases => '-s',
|
@@ -171,6 +176,7 @@ module XamarinTestCloud
|
|
171
176
|
|
172
177
|
self.series = options['series']
|
173
178
|
|
179
|
+
self.priority = options['priority']
|
174
180
|
|
175
181
|
self.skip_config_check = options['skip-config-check']
|
176
182
|
|
@@ -415,7 +421,8 @@ module XamarinTestCloud
|
|
415
421
|
'api_key' => api_key,
|
416
422
|
'dsym_file' => dsym_zip,
|
417
423
|
'dsym_filename' => dsym_file_name,
|
418
|
-
'app_filename' => File.basename(app)
|
424
|
+
'app_filename' => File.basename(app),
|
425
|
+
'priority' => self.priority}
|
419
426
|
|
420
427
|
if profile #only if config and profile
|
421
428
|
upload_data['profile'] = profile
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: xamarin-test-cloud
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.9.
|
4
|
+
version: 0.9.38
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Karl Krukow
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2014-
|
12
|
+
date: 2014-10-06 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: thor
|
@@ -169,7 +169,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
169
169
|
version: '0'
|
170
170
|
requirements: []
|
171
171
|
rubyforge_project:
|
172
|
-
rubygems_version: 2.
|
172
|
+
rubygems_version: 2.0.2
|
173
173
|
signing_key:
|
174
174
|
specification_version: 4
|
175
175
|
summary: Command-line interface to Xamarin Test Cloud
|