concurrent-ruby-ext 0.9.0.pre3-x86-mingw32 → 0.9.0-x86-mingw32

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,15 +1,7 @@
1
1
  ---
2
- !binary "U0hBMQ==":
3
- metadata.gz: !binary |-
4
- OTBmMmFjNTQ5ODNjOGFjNTI1NzkwZTM2Yzc3MTg5NDIxYmI0ZTAyOA==
5
- data.tar.gz: !binary |-
6
- OWI2N2EzNjM4ODYwNzgxMWI4M2M1NzJhYjc5ZmE4N2RhOTBlYjVjYQ==
2
+ SHA1:
3
+ metadata.gz: e1ef7508a0052d16f84ab7a06d19ca6a6808e658
4
+ data.tar.gz: 7626d5d406bdb6cb6cc800ca93acc429ecb9b713
7
5
  SHA512:
8
- metadata.gz: !binary |-
9
- ZTYwODM3NDU1NDVhZWIwM2JiOTk2YmQ0YzFhODc5N2IxN2Y3YmFlNjE0YWY2
10
- OTk2YzMwYTVmZjZmMjMzYTJiMDliODBjNGY2YjkyY2U0MmZjNTJmNTFlNDJk
11
- MTNkOWJkNWFmODRjODQ3M2RkNzQzYTYxN2I5MTk0ZjliMzVlMGU=
12
- data.tar.gz: !binary |-
13
- MzJhMDU4Zjg2MmY2YTg4NWYzNTAxZjk3YTNiNjcxZDU5NzdlNGI5MGFkMTRh
14
- YjUxMTliYjE4NTBjM2U4NTU5NmEzMDdhYzY2MTA4MzdmNzY4YWQ1OWZhOTRi
15
- ZDI1NDViYWM1NWY1YWRjMWQ1OGYyNWYwNWY1NTBkNGJkYzliYTE=
6
+ metadata.gz: b0a250b1302945d5d84589592c71b73dfbc428244d54c978a1cebccdc417e45fd59a534cac1d802beed0e79f029b7c5f3079a32bca5c884e5160f62a8ed5955a
7
+ data.tar.gz: aadced4663a49499a4c933d4d66bd36d06d530ef4673248c43305161e93cf02ab9e8152865cf57bd8fd4b02f555d90fab2f6c17fbc0ddc79901e1b90d5561375
data/CHANGELOG.md CHANGED
@@ -1,5 +1,4 @@
1
- ### Next Release v0.9.0 (Target Date: 7 June 2015)
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
- ## Current Release v0.8.0 (25 January 2015)
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 is not in core?*
131
+ *Why are these not in core?*
131
132
 
132
- - **Actor** - partial documentation and tests, stability good.
133
- - **Future/Promise Framework** - partial documentation and tests, stability good.
134
- - **Agent** - incomplete behaviour compared to Clojure's model, stability good.
135
- - **Channel** - missing documentation, stability good.
136
- - **Exchanger** - known race issue.
137
- - **LazyRegister** - missing documentation and tests.
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
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.pre3
4
+ version: 0.9.0
5
5
  platform: x86-mingw32
6
6
  authors:
7
7
  - Jerry D'Antonio
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-06-22 00:00:00.000000000 Z
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.pre3
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.pre3
27
- description: ! " C extensions to optimize the concurrent-ruby gem when running
28
- under MRI.\n Please see http://concurrent-ruby.com for more information.\n"
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: []
@@ -48,6 +49,8 @@ files:
48
49
  - ext/concurrent/ruby_193_compatible.h
49
50
  - lib/concurrent/1.9/extension.so
50
51
  - lib/concurrent/2.0/extension.so
52
+ - lib/concurrent/2.1/extension.so
53
+ - lib/concurrent/2.2/extension.so
51
54
  - lib/concurrent/atomic_reference/concurrent_update_error.rb
52
55
  - lib/concurrent/atomic_reference/direct_update.rb
53
56
  - lib/concurrent/atomic_reference/numeric_cas_wrapper.rb
@@ -62,14 +65,14 @@ require_paths:
62
65
  - ext
63
66
  required_ruby_version: !ruby/object:Gem::Requirement
64
67
  requirements:
65
- - - ! '>='
68
+ - - ">="
66
69
  - !ruby/object:Gem::Version
67
70
  version: 1.9.3
68
71
  required_rubygems_version: !ruby/object:Gem::Requirement
69
72
  requirements:
70
- - - ! '>'
73
+ - - ">="
71
74
  - !ruby/object:Gem::Version
72
- version: 1.3.1
75
+ version: '0'
73
76
  requirements: []
74
77
  rubyforge_project:
75
78
  rubygems_version: 2.4.8