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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1789e5a73e83522ad183c1581478a71c9211c919
4
- data.tar.gz: 19cc105ec40540bd7d63c36163386f2d3d937ba1
3
+ metadata.gz: 490b4c49de11177461164a3963a9cbe8d0ee1374
4
+ data.tar.gz: ec565b7edbad53d8dcfcbb068c1c92a278fdf714
5
5
  SHA512:
6
- metadata.gz: 79fcfddbac68f1e03acadf73fab3fd2ba9eb9cf0166519a3d25bccc898cb0c8ddcf8b04e8733fb26c0e7099c624acdd8baa1684da3a80fd7f397439e0cbf103f
7
- data.tar.gz: 7ef98b038215eefc42c95f668ee2c894578176272df146b93a2a651af700f42ba20452bfb73458b8ffbf9301c3bb69c98d67978af6b2074153b1ddd1ef8234d4
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
- match = line.match(/\s+([^\(]+) \(([-0-9A-F]+)\) \(([^\(]+)\)(.*unavailable.*)?/)
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
@@ -1,3 +1,3 @@
1
1
  module FastlaneCore
2
- VERSION = "0.50.0".freeze
2
+ VERSION = "0.50.1".freeze
3
3
  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.0
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-03 00:00:00.000000000 Z
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.4.5.1
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