fourflusher 2.3.0 → 2.3.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/CHANGELOG.md +13 -0
- data/Gemfile.lock +2 -2
- data/lib/fourflusher/executable.rb +6 -3
- data/lib/fourflusher/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ba1b9945fa7e18d454b257a7220f2fa0d827e8c1589014efea74655dbeedb3d7
|
4
|
+
data.tar.gz: 5af9215d84a4135394045104d83f26845e0d5409bc578a9e76de3f18496ab1a3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bdf888d77d959c6bd7b29352b0ba20bf49a58a5ab3c1012f355d29c2160ace0897d3f215b085a51042a71d3598c1ae087aca548111e0d9c259af671b916891bc
|
7
|
+
data.tar.gz: a56624aa521c75e999121e56882f57d43f2a6e0e600044209a919bcf8a256c19e680831e06b66741194aac3bb5dbd3c6822e2beddcae74cacc46fda2b230beb7
|
data/CHANGELOG.md
CHANGED
@@ -1,4 +1,17 @@
|
|
1
1
|
|
2
|
+
## 2.3.1 (2019-06-18)
|
3
|
+
|
4
|
+
##### Enhancements
|
5
|
+
|
6
|
+
* None.
|
7
|
+
|
8
|
+
##### Bug Fixes
|
9
|
+
|
10
|
+
* Fixed crash with very long devices list/slow computers.
|
11
|
+
[Martin Fiebig](https://github.com/mfiebig)
|
12
|
+
[#17](https://github.com/CocoaPods/fourflusher/issues/17)
|
13
|
+
|
14
|
+
|
2
15
|
## 2.3.0 (2019-06-05)
|
3
16
|
|
4
17
|
##### Enhancements
|
data/Gemfile.lock
CHANGED
@@ -162,15 +162,18 @@ module Fourflusher
|
|
162
162
|
def self.popen3(bin, command, stdout, stderr)
|
163
163
|
require 'open3'
|
164
164
|
Open3.popen3(bin, *command) do |i, o, e, t|
|
165
|
-
reader(o, stdout)
|
166
|
-
reader(e, stderr)
|
165
|
+
stdout_thread = reader(o, stdout)
|
166
|
+
stderr_thread = reader(e, stderr)
|
167
167
|
i.close
|
168
168
|
|
169
169
|
status = t.value
|
170
170
|
|
171
171
|
o.flush
|
172
172
|
e.flush
|
173
|
-
|
173
|
+
|
174
|
+
# wait for both threads to process the streams
|
175
|
+
stdout_thread.join
|
176
|
+
stderr_thread.join
|
174
177
|
|
175
178
|
status
|
176
179
|
end
|
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.3.
|
4
|
+
version: 2.3.1
|
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: 2019-06-
|
11
|
+
date: 2019-06-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -111,7 +111,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
111
111
|
- !ruby/object:Gem::Version
|
112
112
|
version: '0'
|
113
113
|
requirements: []
|
114
|
-
rubygems_version: 3.0.
|
114
|
+
rubygems_version: 3.0.4
|
115
115
|
signing_key:
|
116
116
|
specification_version: 4
|
117
117
|
summary: A library for interacting with Xcode simulators.
|