concurrent-ruby-ext 0.9.0.pre3-x64-mingw32 → 0.9.0-x64-mingw32
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 +5 -13
- data/CHANGELOG.md +2 -3
- data/README.md +17 -10
- data/lib/concurrent/2.0/extension.so +0 -0
- data/lib/concurrent/2.1/extension.so +0 -0
- data/lib/concurrent/2.2/extension.so +0 -0
- metadata +14 -11
checksums.yaml
CHANGED
@@ -1,15 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
|
5
|
-
data.tar.gz: !binary |-
|
6
|
-
YmFjZTdkNjU2Nzc4M2JhNzhkOGY1ODlkNGE1NjNjMjM4YWVjYTY2ZA==
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: fa6ee685916e70f3093b901fcf3e97f6fbdbfc01
|
4
|
+
data.tar.gz: d7f917ff4903488ee2927ab0a6fbe2ae56ea311c
|
7
5
|
SHA512:
|
8
|
-
metadata.gz:
|
9
|
-
|
10
|
-
MTNmOWExMWMwZDBjNzQ2OWVjNjcyYzI0ZjRhNTNkZTE5NmM3Njk5ODAzYWI0
|
11
|
-
ZDY0ZWQyYWZlZjI3MDhiYTY2N2Q2MjNjOThhZGZkNjVmYjVkMjQ=
|
12
|
-
data.tar.gz: !binary |-
|
13
|
-
MjA0MzlmZTAyOTI3Yzg1ZTM5MWFhODFkNThmNjM3YTFiNzY3OTQ5ODViOWMx
|
14
|
-
ZmFjYWYwZjVjNGNlZjI4NjYyNzZjZWZkOTFmNWRjOGJlMWNjMjllZjBhMzQx
|
15
|
-
MDUwYTQ5ZjU1ZTdlMTk1NzdhYmM4NzJmZGY3ZmU4ZTc3ODgxYzk=
|
6
|
+
metadata.gz: 0ac9acd0174e6c829d42dec570274359f80bdb1cb4f0a982d2c92628fe3a8aba0a30c38936482e5fb4afc3008049baba518ee6fac3fe165977f4089ff0135428
|
7
|
+
data.tar.gz: 51a3dd3e610437a63a86a79c7eed05170c335ba66f4ed11b9f397992c3d4125edd9cdb0ed10bfc38866da7c43682a8f98660c23ca054f9c1791a10d144e31822
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,4 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
## Current Release v0.9.0 (10 July 2015)
|
3
2
|
|
4
3
|
* Updated `AtomicReference`
|
5
4
|
- `AtomicReference#try_update` now simply returns instead of raising exception
|
@@ -98,7 +97,7 @@
|
|
98
97
|
* Removed brute-force killing of threads in tests
|
99
98
|
* Fixed a thread pool bug when the operating system cannot allocate more threads
|
100
99
|
|
101
|
-
|
100
|
+
### Release v0.8.0 (25 January 2015)
|
102
101
|
|
103
102
|
* C extension for MRI have been extracted into the `concurrent-ruby-ext` companion gem.
|
104
103
|
Please see the README for more detail.
|
data/README.md
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
# Concurrent Ruby
|
2
|
-
[](http://badge.fury.io/rb/concurrent-ruby) [](https://travis-ci.org/ruby-concurrency/concurrent-ruby) [](https://codeclimate.com/github/ruby-concurrency/concurrent-ruby) [](http://inch-ci.org/github/ruby-concurrency/concurrent-ruby) [](https://gemnasium.com/ruby-concurrency/concurrent-ruby) [](http://opensource.org/licenses/MIT) [](https://gitter.im/ruby-concurrency/concurrent-ruby)
|
2
|
+
[](http://badge.fury.io/rb/concurrent-ruby) [](https://travis-ci.org/ruby-concurrency/concurrent-ruby) [](https://ci.appveyor.com/project/rubyconcurrency/concurrent-ruby) [](https://codeclimate.com/github/ruby-concurrency/concurrent-ruby) [](http://inch-ci.org/github/ruby-concurrency/concurrent-ruby) [](https://gemnasium.com/ruby-concurrency/concurrent-ruby) [](http://opensource.org/licenses/MIT) [](https://gitter.im/ruby-concurrency/concurrent-ruby)
|
3
3
|
|
4
4
|
<table>
|
5
5
|
<tr>
|
@@ -39,6 +39,7 @@
|
|
39
39
|
|
40
40
|
MRI 1.9.3, 2.0, 2.1, 2.2, JRuby (1.9 mode), and Rubinius 2.x are supported.
|
41
41
|
This gem should be fully compatible with any interpreter that is compliant with Ruby 1.9.3 or newer.
|
42
|
+
Java 8 is required for JRuby (Java 7 support is deprecated in version 0.9 and will be removed in 1.0).
|
42
43
|
|
43
44
|
## Features & Documentation
|
44
45
|
|
@@ -127,14 +128,14 @@ be obeyed though. Features developed in `concurrent-ruby-edge` are expected to m
|
|
127
128
|
|
128
129
|
#### Statuses:
|
129
130
|
|
130
|
-
*Why
|
131
|
+
*Why are these not in core?*
|
131
132
|
|
132
|
-
- **Actor** -
|
133
|
-
- **Future/Promise Framework** - partial documentation and tests
|
134
|
-
- **Agent** -
|
135
|
-
- **Channel** -
|
136
|
-
- **Exchanger** -
|
137
|
-
- **LazyRegister** -
|
133
|
+
- **Actor** - Partial documentation and tests; stability is good.
|
134
|
+
- **Future/Promise Framework** - API changes; partial documentation and tests; stability good.
|
135
|
+
- **Agent** - Incomplete behaviour compared to Clojure's models; stability good.
|
136
|
+
- **Channel** - Missing documentation; limted features; stability good.
|
137
|
+
- **Exchanger** - Known race condition requiring a new implementation.
|
138
|
+
- **LazyRegister** - Missing documentation and tests.
|
138
139
|
|
139
140
|
## Usage
|
140
141
|
|
@@ -248,10 +249,16 @@ bundle exec rake build # Build JRuby-specific core gem (alias for `
|
|
248
249
|
bundle exec rake build:core # Build concurrent-ruby-<version>-java.gem into the pkg directory
|
249
250
|
|
250
251
|
*All except JRuby*
|
251
|
-
bundle exec rake build # Build core and extension gems
|
252
252
|
bundle exec rake build:core # Build concurrent-ruby-<version>.gem into the pkg directory
|
253
253
|
bundle exec rake build:ext # Build concurrent-ruby-ext-<version>.gem into the pkg directory
|
254
254
|
|
255
|
+
*When Docker IS installed*
|
256
|
+
bundle exec rake build:windows # Build the windows binary <version> gems per rake-compiler-dock
|
257
|
+
bundle exec rake build # Build core, extension, and edge gems, including Windows binaries
|
258
|
+
|
259
|
+
*When Docker is NOT installed*
|
260
|
+
bundle exec rake build # Build core, extension, and edge gems (excluding Windows binaries)
|
261
|
+
|
255
262
|
*All*
|
256
263
|
bundle exec rake clean # Remove any temporary products
|
257
264
|
bundle exec rake clobber # Remove any generated file
|
@@ -260,7 +267,7 @@ bundle exec rake compile # Compile all the extensions
|
|
260
267
|
|
261
268
|
## Maintainers
|
262
269
|
|
263
|
-
* [Jerry D'Antonio](https://github.com/jdantonio)
|
270
|
+
* [Jerry D'Antonio](https://github.com/jdantonio) (creator)
|
264
271
|
* [Michele Della Torre](https://github.com/mighe)
|
265
272
|
* [Chris Seaton](https://github.com/chrisseaton)
|
266
273
|
* [Lucas Allan](https://github.com/lucasallan)
|
Binary file
|
Binary file
|
Binary file
|
metadata
CHANGED
@@ -1,31 +1,32 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: concurrent-ruby-ext
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.9.0
|
4
|
+
version: 0.9.0
|
5
5
|
platform: x64-mingw32
|
6
6
|
authors:
|
7
7
|
- Jerry D'Antonio
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-
|
11
|
+
date: 2015-07-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: concurrent-ruby
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - ~>
|
17
|
+
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.9.0
|
19
|
+
version: 0.9.0
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
|
-
- - ~>
|
24
|
+
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 0.9.0
|
27
|
-
description:
|
28
|
-
|
26
|
+
version: 0.9.0
|
27
|
+
description: |2
|
28
|
+
C extensions to optimize the concurrent-ruby gem when running under MRI.
|
29
|
+
Please see http://concurrent-ruby.com for more information.
|
29
30
|
email: jerry.dantonio@gmail.com
|
30
31
|
executables: []
|
31
32
|
extensions: []
|
@@ -47,6 +48,8 @@ files:
|
|
47
48
|
- ext/concurrent/rb_concurrent.c
|
48
49
|
- ext/concurrent/ruby_193_compatible.h
|
49
50
|
- lib/concurrent/2.0/extension.so
|
51
|
+
- lib/concurrent/2.1/extension.so
|
52
|
+
- lib/concurrent/2.2/extension.so
|
50
53
|
- lib/concurrent/atomic_reference/concurrent_update_error.rb
|
51
54
|
- lib/concurrent/atomic_reference/direct_update.rb
|
52
55
|
- lib/concurrent/atomic_reference/numeric_cas_wrapper.rb
|
@@ -61,14 +64,14 @@ require_paths:
|
|
61
64
|
- ext
|
62
65
|
required_ruby_version: !ruby/object:Gem::Requirement
|
63
66
|
requirements:
|
64
|
-
- -
|
67
|
+
- - ">="
|
65
68
|
- !ruby/object:Gem::Version
|
66
69
|
version: 1.9.3
|
67
70
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
68
71
|
requirements:
|
69
|
-
- -
|
72
|
+
- - ">="
|
70
73
|
- !ruby/object:Gem::Version
|
71
|
-
version:
|
74
|
+
version: '0'
|
72
75
|
requirements: []
|
73
76
|
rubyforge_project:
|
74
77
|
rubygems_version: 2.4.8
|