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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e13292630902552e4fab6345055ce9e8bbc9420818735b19b3d974df0d384a02
4
- data.tar.gz: c047c2878490a697b75e16d474625c346d7bbd40c16ec0a85d31fdec7d2dd1cb
3
+ metadata.gz: ba1b9945fa7e18d454b257a7220f2fa0d827e8c1589014efea74655dbeedb3d7
4
+ data.tar.gz: 5af9215d84a4135394045104d83f26845e0d5409bc578a9e76de3f18496ab1a3
5
5
  SHA512:
6
- metadata.gz: 927eb2668fa9a6ff09f199bfa8cbd1405f6968cc2f9fdc4f20bff51dc1eca0ba2f65fe5a3188c468a1eb5373d172f2a7cbe18f5bc31a5722e0b06983726947e1
7
- data.tar.gz: 01b27f23fc52956adaa8e73804c42364d7b79e549c15922010ecdd8148689eeb5cb56bd1037a131f0886b9593444763deef77a05676008b125ab29f8a8679986
6
+ metadata.gz: bdf888d77d959c6bd7b29352b0ba20bf49a58a5ab3c1012f355d29c2160ace0897d3f215b085a51042a71d3598c1ae087aca548111e0d9c259af671b916891bc
7
+ data.tar.gz: a56624aa521c75e999121e56882f57d43f2a6e0e600044209a919bcf8a256c19e680831e06b66741194aac3bb5dbd3c6822e2beddcae74cacc46fda2b230beb7
@@ -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
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- fourflusher (2.3.0)
4
+ fourflusher (2.3.1)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -44,4 +44,4 @@ DEPENDENCIES
44
44
  rubocop (~> 0.35.0)
45
45
 
46
46
  BUNDLED WITH
47
- 1.13.1
47
+ 1.17.3
@@ -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
- sleep(0.01)
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
@@ -1,3 +1,3 @@
1
1
  module Fourflusher
2
- VERSION = '2.3.0'
2
+ VERSION = '2.3.1'
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.3.0
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-05 00:00:00.000000000 Z
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.1
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.