stopgap_13632 1.1.2 → 1.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 -0
- data/README.md +3 -2
- data/ext/stopgap_13632/extconf.rb +1 -1
- data/stopgap_13632.gemspec +2 -2
- metadata +5 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 04ab4f417a3182d1cff2f268332e29f0b5b757ad
|
4
|
+
data.tar.gz: 632d7154e3296fe686f80824007556a6760ff6af
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9fe864206e9334e84e39e948c06306c885e0d9d941130919a6df5267c251f375c474637ce254f637cea68b2d1891a5f2c38ac40b5f51e44b045850d35a48a5fc
|
7
|
+
data.tar.gz: 86d3d32a2538ea90d502912b5621870a0914733fa7cfd53cce91b4d944d068d30d8477cc370fdb6e554290a0ba8054556e05e251f4b7ef4cbd4e18f1f0ca86cd
|
data/.travis.yml
CHANGED
data/README.md
CHANGED
@@ -9,7 +9,7 @@ The best way to fix this bug is to update your interpreter.
|
|
9
9
|
|
10
10
|
## Description
|
11
11
|
A gem with a temporary stopgap workaround for MRI Ruby for the bug https://bugs.ruby-lang.org/issues/13632 until the proper fix gets backported.
|
12
|
-
There are
|
12
|
+
There are 6 versions affected 2.2.7, 2.2.8, 2.2.9, 2.2.10, 2.3.4, 2.4.1.
|
13
13
|
|
14
14
|
## What does this bug look like?
|
15
15
|
You're getting a similar exception erratically in a presence of many threads:
|
@@ -22,7 +22,7 @@ test2.rb:9:in `sysopen': stream closed in another thread (IOError)
|
|
22
22
|
## Installation and usage
|
23
23
|
In Gemfile:
|
24
24
|
```ruby
|
25
|
-
if %w(2.2.7 2.2.8 2.2.9 2.3.4 2.4.1).include? RUBY_VERSION
|
25
|
+
if %w(2.2.7 2.2.8 2.2.9 2.2.10 2.3.4 2.4.1).include? RUBY_VERSION
|
26
26
|
gem "stopgap_13632", "~> 1.0", :platforms => ["mri", "mingw", "x64_mingw"]
|
27
27
|
end
|
28
28
|
|
@@ -41,6 +41,7 @@ It will unblock the thread and allow it to proceed.
|
|
41
41
|
|
42
42
|
## Change log
|
43
43
|
1.1.2: Added ruby 2.2.9 support
|
44
|
+
1.2.0: Added ruby 2.2.10 support
|
44
45
|
|
45
46
|
## Contributing
|
46
47
|
```bash
|
@@ -4,7 +4,7 @@ extension_name = 'stopgap_13632'
|
|
4
4
|
|
5
5
|
dir_config(extension_name)
|
6
6
|
|
7
|
-
BROKEN_VERSIONS = %w(2.2.7 2.2.8 2.2.9 2.3.4 2.4.1)
|
7
|
+
BROKEN_VERSIONS = %w(2.2.7 2.2.8 2.2.9 2.2.10 2.3.4 2.4.1)
|
8
8
|
if (BROKEN_VERSIONS.include? RUBY_VERSION)
|
9
9
|
$defs << '-DBROKEN_RUBY'
|
10
10
|
$defs << "-DVERSION_#{RUBY_VERSION.gsub('.', '_')}"
|
data/stopgap_13632.gemspec
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
s.name = 'stopgap_13632'
|
3
|
-
s.version = '1.
|
3
|
+
s.version = '1.2.0'
|
4
4
|
s.authors = ['Nikolay Vashchenko']
|
5
|
-
s.description = 'Temporary stopgap workaround for MRI Ruby versions 2.2.7, 2.2.8, 2.3.4, 2.4.1 for the bug https://bugs.ruby-lang.org/issues/13632 until it gets backported'
|
5
|
+
s.description = 'Temporary stopgap workaround for MRI Ruby versions 2.2.7, 2.2.8, 2.2.9, 2.2.10, 2.3.4, 2.4.1 for the bug https://bugs.ruby-lang.org/issues/13632 until it gets backported'
|
6
6
|
s.summary = 'Temporary solution for https://bugs.ruby-lang.org/issues/13632'
|
7
7
|
s.email = 'sir.nickolas@gmail.com'
|
8
8
|
s.extensions = ['ext/stopgap_13632/extconf.rb']
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: stopgap_13632
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Nikolay Vashchenko
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-02
|
11
|
+
date: 2018-04-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake-compiler
|
@@ -38,8 +38,9 @@ dependencies:
|
|
38
38
|
- - "~>"
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '5.8'
|
41
|
-
description: Temporary stopgap workaround for MRI Ruby versions 2.2.7, 2.2.8, 2.
|
42
|
-
2.4.1 for the bug https://bugs.ruby-lang.org/issues/13632 until it
|
41
|
+
description: Temporary stopgap workaround for MRI Ruby versions 2.2.7, 2.2.8, 2.2.9,
|
42
|
+
2.2.10, 2.3.4, 2.4.1 for the bug https://bugs.ruby-lang.org/issues/13632 until it
|
43
|
+
gets backported
|
43
44
|
email: sir.nickolas@gmail.com
|
44
45
|
executables: []
|
45
46
|
extensions:
|