xamarin-test-cloud 2.1.0 → 2.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/xamarin-test-cloud/cli.rb +12 -2
- data/lib/xamarin-test-cloud/cli.rb alias +0 -0
- data/lib/xamarin-test-cloud/version.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6d21c782b0bfd9204eb92e145f0c0bfd78166bbb
|
4
|
+
data.tar.gz: 6b0cb6acfdbb44f7f894bfa9cb2423395329d582
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 08557085a537b8c97f08265456bfcb14086f8771e977a487c5eea7341f50a3f1efefd16b425dc978a0162f4ebd0ef5c655da23b434b60885de11c460825812bb
|
7
|
+
data.tar.gz: 809bd7f02e6a643ce1a353c7fb825967efbce3c0aca8fedd0d477154142d3168bc108a2f27ce32f31e9c311dce981dc18e41283dd815b42b274b0aa173d03ad8
|
@@ -39,7 +39,7 @@ module XamarinTestCloud
|
|
39
39
|
:config, :profile, :skip_config_check, :dry_run,
|
40
40
|
:device_selection, :pretty, :async, :async_json, :priority, :endpoint_path,
|
41
41
|
:include_files_input,
|
42
|
-
:locale, :series, :session_id
|
42
|
+
:locale, :language, :series, :session_id
|
43
43
|
|
44
44
|
attr_reader :included_files_map
|
45
45
|
|
@@ -151,7 +151,11 @@ module XamarinTestCloud
|
|
151
151
|
:default => false #do upload by default
|
152
152
|
|
153
153
|
method_option 'locale',
|
154
|
-
:desc => "System
|
154
|
+
:desc => "System locale",
|
155
|
+
:type => :string
|
156
|
+
|
157
|
+
method_option 'language',
|
158
|
+
:desc => "Override language (iOS only)",
|
155
159
|
:type => :string
|
156
160
|
|
157
161
|
method_option 'series',
|
@@ -207,6 +211,8 @@ module XamarinTestCloud
|
|
207
211
|
|
208
212
|
self.locale = options['locale']
|
209
213
|
|
214
|
+
self.language = options['language']
|
215
|
+
|
210
216
|
self.series = options['series']
|
211
217
|
|
212
218
|
self.priority = options['priority']
|
@@ -234,6 +240,8 @@ module XamarinTestCloud
|
|
234
240
|
puts "Profile = #{self.profile}"
|
235
241
|
puts "dSym = #{self.dsym}"
|
236
242
|
puts "Include = #{included_files_map}"
|
243
|
+
puts "Locale = #{self.locale}"
|
244
|
+
puts "Language = #{self.language}"
|
237
245
|
end
|
238
246
|
|
239
247
|
# Argument parsing done
|
@@ -625,6 +633,8 @@ https://github.com/calabash/calabash-ios/wiki/Tutorial%3A-How-to-add-Calabash-to
|
|
625
633
|
'app_filename' => File.basename(app)
|
626
634
|
}
|
627
635
|
|
636
|
+
upload_data['language'] = self.language if self.language
|
637
|
+
|
628
638
|
if dsym
|
629
639
|
upload_data["dsym_file"] = dsym_digest_or_file
|
630
640
|
upload_data["dsym_filename"] = dsym.remote_path(app)
|
Binary file
|
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: 2.1.
|
4
|
+
version: 2.1.1
|
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:
|
12
|
+
date: 2017-02-09 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: thor
|
@@ -322,6 +322,7 @@ files:
|
|
322
322
|
- bin/test-cloud
|
323
323
|
- lib/xamarin-test-cloud/calabash_version_detector.rb
|
324
324
|
- lib/xamarin-test-cloud/cli.rb
|
325
|
+
- lib/xamarin-test-cloud/cli.rb alias
|
325
326
|
- lib/xamarin-test-cloud/dsym.rb
|
326
327
|
- lib/xamarin-test-cloud/environment.rb
|
327
328
|
- lib/xamarin-test-cloud/http/payload.rb
|
@@ -350,7 +351,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
350
351
|
version: '0'
|
351
352
|
requirements: []
|
352
353
|
rubyforge_project:
|
353
|
-
rubygems_version: 2.
|
354
|
+
rubygems_version: 2.6.4
|
354
355
|
signing_key:
|
355
356
|
specification_version: 4
|
356
357
|
summary: Command-line interface to Xamarin Test Cloud
|