fourflusher 2.1.0 → 2.2.0
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/.travis.yml +1 -1
- data/CHANGELOG.md +13 -0
- data/Gemfile.lock +1 -1
- data/lib/fourflusher/find.rb +11 -2
- data/lib/fourflusher/version.rb +1 -1
- metadata +3 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 503b9eea68ee609748935337b80959e8cdfa538dbbfd39a48292ff4fc33e5b2d
|
|
4
|
+
data.tar.gz: 3dd681a5f59f90b2a58e9954fc56c1c8bb9f3f39dc619cce678845cd3ecbf8d3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c93a2aea912a28e90033f78bdaf47ab4b1452005200ec914a0e23afea6b60c2c326a4663018eca9225f2b0f33247518c7b852003a4e9dea2e6bf46b93d09a52d
|
|
7
|
+
data.tar.gz: 936f27474e581d4163ed299ab9e9bc94d534badb5123d4a968c38d26bc6a00cabd14fa9cdd30bd4526c9b91a8bb15e6bdb72712d8fb54548ba82002556cadc52
|
data/.travis.yml
CHANGED
data/CHANGELOG.md
CHANGED
|
@@ -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
|
data/Gemfile.lock
CHANGED
data/lib/fourflusher/find.rb
CHANGED
|
@@ -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
|
-
#
|
|
132
|
-
|
|
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)
|
data/lib/fourflusher/version.rb
CHANGED
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.
|
|
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:
|
|
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
|
-
|
|
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.
|