concurrent-ruby-ext 0.9.0.pre3 → 0.9.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +2 -3
- data/README.md +17 -10
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a9481013a26cd32bc9c7a41efc7fe7a797343fef
|
4
|
+
data.tar.gz: b145937e4567f1e0989901496d78ba60c151c2ec
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9b1551a0fadd98afd5095cf0a3fc5320b5705dafe8015b17b56116234e866e432c919768ca433ebe5899f857dd28b7e6816fd618a540ebdcd92a119f83d46c47
|
7
|
+
data.tar.gz: 11303e8a0c5b3ca961d69ba585b855c8e05a8960fcc50a2a7072d50222d9288a491862d1fbfab0f1252309114f88c2df455b6f2118fcdaccf91d97ef4a57ad0b
|
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
|
-
[![Gem Version](https://badge.fury.io/rb/concurrent-ruby.svg)](http://badge.fury.io/rb/concurrent-ruby) [![Build Status](https://travis-ci.org/ruby-concurrency/concurrent-ruby.svg?branch=master)](https://travis-ci.org/ruby-concurrency/concurrent-ruby) [![Code Climate](https://codeclimate.com/github/ruby-concurrency/concurrent-ruby.svg)](https://codeclimate.com/github/ruby-concurrency/concurrent-ruby) [![Inline docs](http://inch-ci.org/github/ruby-concurrency/concurrent-ruby.svg)](http://inch-ci.org/github/ruby-concurrency/concurrent-ruby) [![Dependency Status](https://gemnasium.com/ruby-concurrency/concurrent-ruby.svg)](https://gemnasium.com/ruby-concurrency/concurrent-ruby) [![License](https://img.shields.io/badge/license-MIT-green.svg)](http://opensource.org/licenses/MIT) [![Gitter chat](http://img.shields.io/badge/gitter-join%20chat%20%E2%86%92-brightgreen.svg)](https://gitter.im/ruby-concurrency/concurrent-ruby)
|
2
|
+
[![Gem Version](https://badge.fury.io/rb/concurrent-ruby.svg)](http://badge.fury.io/rb/concurrent-ruby) [![Build Status](https://travis-ci.org/ruby-concurrency/concurrent-ruby.svg?branch=master)](https://travis-ci.org/ruby-concurrency/concurrent-ruby) [![Build status](https://ci.appveyor.com/api/projects/status/iq8aboyuu3etad4w?svg=true)](https://ci.appveyor.com/project/rubyconcurrency/concurrent-ruby) [![Code Climate](https://codeclimate.com/github/ruby-concurrency/concurrent-ruby.svg)](https://codeclimate.com/github/ruby-concurrency/concurrent-ruby) [![Inline docs](http://inch-ci.org/github/ruby-concurrency/concurrent-ruby.svg)](http://inch-ci.org/github/ruby-concurrency/concurrent-ruby) [![Dependency Status](https://gemnasium.com/ruby-concurrency/concurrent-ruby.svg)](https://gemnasium.com/ruby-concurrency/concurrent-ruby) [![License](https://img.shields.io/badge/license-MIT-green.svg)](http://opensource.org/licenses/MIT) [![Gitter chat](http://img.shields.io/badge/gitter-join%20chat%20%E2%86%92-brightgreen.svg)](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)
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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: ruby
|
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
|
@@ -16,14 +16,14 @@ dependencies:
|
|
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
|
26
|
+
version: 0.9.0
|
27
27
|
description: |2
|
28
28
|
C extensions to optimize the concurrent-ruby gem when running under MRI.
|
29
29
|
Please see http://concurrent-ruby.com for more information.
|
@@ -67,9 +67,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
67
67
|
version: 1.9.3
|
68
68
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
69
69
|
requirements:
|
70
|
-
- - "
|
70
|
+
- - ">="
|
71
71
|
- !ruby/object:Gem::Version
|
72
|
-
version:
|
72
|
+
version: '0'
|
73
73
|
requirements: []
|
74
74
|
rubyforge_project:
|
75
75
|
rubygems_version: 2.4.8
|