fastlane_core 0.50.0 → 0.50.1
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/lib/fastlane_core/device_manager.rb +8 -1
- data/lib/fastlane_core/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: 490b4c49de11177461164a3963a9cbe8d0ee1374
|
|
4
|
+
data.tar.gz: ec565b7edbad53d8dcfcbb068c1c92a278fdf714
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bf00a6d5ad121555b275e2d35ccd4bf7ceb18004d555fa354add603d4f9b03a87bbae972690f5ded9870370b2fe14e2e910a48627fbd5ed62f7c6a51ac6c1621
|
|
7
|
+
data.tar.gz: 1a9da397a1a7f3fa7553677bdf5354ad33ccc7b6f960806e6904a248bf743d0c67283e7c322d6a12868aeaf1a3cf96e7ae5863622d9e858ea3fbf3e764d40ff7
|
|
@@ -31,7 +31,14 @@ module FastlaneCore
|
|
|
31
31
|
else
|
|
32
32
|
# iPad 2 (0EDE6AFC-3767-425A-9658-AAA30A60F212) (Shutdown)
|
|
33
33
|
# iPad Air 2 (4F3B8059-03FD-4D72-99C0-6E9BBEE2A9CE) (Shutdown) (unavailable, device type profile not found)
|
|
34
|
-
|
|
34
|
+
if line.include?("inch)")
|
|
35
|
+
# For Xcode 8, where sometimes we have the # of inches in ()
|
|
36
|
+
# iPad Pro (12.9 inch) (CEF11EB3-79DF-43CB-896A-0F33916C8BDE) (Shutdown)
|
|
37
|
+
match = line.match(/\s+([^\(]+ \(.*inch\)) \(([-0-9A-F]+)\) \(([^\(]+)\)(.*unavailable.*)?/)
|
|
38
|
+
else
|
|
39
|
+
match = line.match(/\s+([^\(]+) \(([-0-9A-F]+)\) \(([^\(]+)\)(.*unavailable.*)?/)
|
|
40
|
+
end
|
|
41
|
+
|
|
35
42
|
if match && !match[4] && (os_type == requested_os_type || requested_os_type == "")
|
|
36
43
|
@devices << Device.new(name: match[1], os_version: os_version, udid: match[2], state: match[3], is_simulator: true)
|
|
37
44
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fastlane_core
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.50.
|
|
4
|
+
version: 0.50.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Felix Krause
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-08-
|
|
11
|
+
date: 2016-08-11 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: json
|
|
@@ -408,7 +408,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
408
408
|
version: '0'
|
|
409
409
|
requirements: []
|
|
410
410
|
rubyforge_project:
|
|
411
|
-
rubygems_version: 2.
|
|
411
|
+
rubygems_version: 2.6.6
|
|
412
412
|
signing_key:
|
|
413
413
|
specification_version: 4
|
|
414
414
|
summary: Contains all shared code/dependencies of the fastlane.tools
|