fourflusher 2.1.0 → 2.2.0

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
2
  SHA256:
3
- metadata.gz: d43ac16156c30f528d7058e482a8a0fd406950d73b11025e871f319f6d3380bd
4
- data.tar.gz: a8e4229ff5a8ec392945dfeaeec562906b5185bc66cd37f56259602bb50bb2ee
3
+ metadata.gz: 503b9eea68ee609748935337b80959e8cdfa538dbbfd39a48292ff4fc33e5b2d
4
+ data.tar.gz: 3dd681a5f59f90b2a58e9954fc56c1c8bb9f3f39dc619cce678845cd3ecbf8d3
5
5
  SHA512:
6
- metadata.gz: 837f6c27c90ca52322e9f4a821cec96d72cd9e5466a316c593e81b6683fd33eb4d1ef389e575a06426c21d69af653f261d6448c2d3607b21e7eed38fc8de6abf
7
- data.tar.gz: fab9cbcfa3dbf27b46191e082e23db928b8c90db9395e6df1c1568f09e3fa2e756bd8a83b302f46f4f63c960987bc53cfcf2a64820cd04972cf5b8a4902d335e
6
+ metadata.gz: c93a2aea912a28e90033f78bdaf47ab4b1452005200ec914a0e23afea6b60c2c326a4663018eca9225f2b0f33247518c7b852003a4e9dea2e6bf46b93d09a52d
7
+ data.tar.gz: 936f27474e581d4163ed299ab9e9bc94d534badb5123d4a968c38d26bc6a00cabd14fa9cdd30bd4526c9b91a8bb15e6bdb72712d8fb54548ba82002556cadc52
@@ -3,6 +3,6 @@ rvm:
3
3
  - 2.0.0-p648
4
4
  - 2.5.1
5
5
  cache: bundler
6
- before_install: gem install bundler
6
+ before_install: gem install bundler -v "~> 1.17"
7
7
  script:
8
8
  - bundle exec rake
@@ -1,4 +1,17 @@
1
1
 
2
+ ## 2.2.0 (2019-01-28)
3
+
4
+ ##### Enhancements
5
+
6
+ * Update simctl interface for Xcode 10.2.
7
+ [Jeff Kelley](https://github.com/SlaunchaMan)
8
+ [CocoaPods#8458](https://github.com/CocoaPods/CocoaPods/issues/8458)
9
+
10
+ ##### Bug Fixes
11
+
12
+ * None.
13
+
14
+
2
15
  ## 2.1.0 (2018-10-17)
3
16
 
4
17
  ##### Enhancements
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- fourflusher (2.1.0)
4
+ fourflusher (2.2.0)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -128,8 +128,17 @@ module Fourflusher
128
128
  fail Fourflusher::Informative, msg
129
129
  end
130
130
  device_list.flat_map do |runtime_str, devices|
131
- # Sample string: iOS 9.3
132
- os_name, os_version = runtime_str.split ' '
131
+ # This format changed with Xcode 10.2.
132
+ if runtime_str.start_with?('com.apple.CoreSimulator.SimRuntime.')
133
+ # Sample string: com.apple.CoreSimulator.SimRuntime.iOS-12-2
134
+ _unused, os_info = runtime_str.split 'com.apple.CoreSimulator.SimRuntime.'
135
+ os_name, os_major_version, os_minor_version = os_info.split '-'
136
+ os_version = "#{os_major_version}.#{os_minor_version}"
137
+ else
138
+ # Sample string: iOS 9.3
139
+ os_name, os_version = runtime_str.split ' '
140
+ end
141
+
133
142
  devices.map do |device|
134
143
  if device['availability'] == '(available)' || device['isAvailable'] == 'YES'
135
144
  Simulator.new(device, os_name, os_version)
@@ -1,3 +1,3 @@
1
1
  module Fourflusher
2
- VERSION = '2.1.0'
2
+ VERSION = '2.2.0'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fourflusher
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.0
4
+ version: 2.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Boris Bügling
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-10-17 00:00:00.000000000 Z
11
+ date: 2019-01-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -111,8 +111,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
111
111
  - !ruby/object:Gem::Version
112
112
  version: '0'
113
113
  requirements: []
114
- rubyforge_project:
115
- rubygems_version: 2.7.7
114
+ rubygems_version: 3.0.1
116
115
  signing_key:
117
116
  specification_version: 4
118
117
  summary: A library for interacting with Xcode simulators.