concurrent-ruby-ext 1.0.4 → 1.0.5
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/CHANGELOG.md +17 -1
- data/README.md +1 -1
- metadata +6 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 566cb423e7561b8ec1e1901b45a4ad6a5f4d4e88
|
|
4
|
+
data.tar.gz: 2caaf90b84397751c12b236624b882a8554ca132
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ef56dcb326b4799947d2dac87ae3879039e3d7d2e6edd599f5f7f106a9d46419de8a5909f18b409070ac2103a556cb9576d5ffb60a92ee6b74c0ade0aed419b6
|
|
7
|
+
data.tar.gz: 5921ae8485470de570eacd8b59c1396ac5f15e8afabe11b5c17127bfeebcd66ed114d7d83972cb7daa644a87726115c4fe056df547b8f9da3b40fb7cd58a9191
|
data/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,20 @@
|
|
|
1
|
-
##
|
|
1
|
+
## Release v1.0.5, edge v0.3.1 (26 Feb 2017)
|
|
2
|
+
|
|
3
|
+
concurrent-ruby:
|
|
4
|
+
|
|
5
|
+
* Documentation for Event and Semaphore
|
|
6
|
+
* Use Unsafe#fullFence and #loadFence directly since the shortcuts were removed in JRuby
|
|
7
|
+
* Do not depend on org.jruby.util.unsafe.UnsafeHolder
|
|
8
|
+
|
|
9
|
+
concurrent-ruby-edge:
|
|
10
|
+
|
|
11
|
+
* (#620) Actors on Pool raise an error
|
|
12
|
+
* (#624) Delayed promises did not interact correctly with flatting
|
|
13
|
+
* Fix arguments yielded by callback methods
|
|
14
|
+
* Overridable default executor in promises factory methods
|
|
15
|
+
* Asking actor to terminate will always resolve to `true`
|
|
16
|
+
|
|
17
|
+
## Release v1.0.4, edge v0.3.0 (27 Dec 2016)
|
|
2
18
|
|
|
3
19
|
concurrent-ruby:
|
|
4
20
|
|
data/README.md
CHANGED
|
@@ -84,7 +84,7 @@ Structure classes derived from Ruby's [Struct](http://ruby-doc.org/core-2.2.0/St
|
|
|
84
84
|
|
|
85
85
|
Thread-safe variables:
|
|
86
86
|
|
|
87
|
-
* [Agent](http://ruby-concurrency.github.io/concurrent-ruby/Concurrent/Agent.html): A way to manage shared, mutable, *asynchronous*, independent
|
|
87
|
+
* [Agent](http://ruby-concurrency.github.io/concurrent-ruby/Concurrent/Agent.html): A way to manage shared, mutable, *asynchronous*, independent state. Based on Clojure's [Agent](http://clojure.org/agents).
|
|
88
88
|
* [Atom](http://ruby-concurrency.github.io/concurrent-ruby/Concurrent/Atom.html): A way to manage shared, mutable, *synchronous*, independent state. Based on Clojure's [Atom](http://clojure.org/atoms).
|
|
89
89
|
* [AtomicBoolean](http://ruby-concurrency.github.io/concurrent-ruby/Concurrent/AtomicBoolean.html) A boolean value that can be updated atomically.
|
|
90
90
|
* [AtomicFixnum](http://ruby-concurrency.github.io/concurrent-ruby/Concurrent/AtomicFixnum.html) A numeric value that can be updated atomically.
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: concurrent-ruby-ext
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jerry D'Antonio
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date:
|
|
12
|
+
date: 2017-02-26 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: concurrent-ruby
|
|
@@ -17,20 +17,18 @@ dependencies:
|
|
|
17
17
|
requirements:
|
|
18
18
|
- - '='
|
|
19
19
|
- !ruby/object:Gem::Version
|
|
20
|
-
version: 1.0.
|
|
20
|
+
version: 1.0.5
|
|
21
21
|
type: :runtime
|
|
22
22
|
prerelease: false
|
|
23
23
|
version_requirements: !ruby/object:Gem::Requirement
|
|
24
24
|
requirements:
|
|
25
25
|
- - '='
|
|
26
26
|
- !ruby/object:Gem::Version
|
|
27
|
-
version: 1.0.
|
|
27
|
+
version: 1.0.5
|
|
28
28
|
description: |2
|
|
29
29
|
C extensions to optimize the concurrent-ruby gem when running under MRI.
|
|
30
30
|
Please see http://concurrent-ruby.com for more information.
|
|
31
|
-
email:
|
|
32
|
-
- jerry.dantonio@gmail.com
|
|
33
|
-
- concurrent-ruby@googlegroups.com
|
|
31
|
+
email: concurrent-ruby@googlegroups.com
|
|
34
32
|
executables: []
|
|
35
33
|
extensions:
|
|
36
34
|
- ext/concurrent/extconf.rb
|
|
@@ -75,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
75
73
|
version: '0'
|
|
76
74
|
requirements: []
|
|
77
75
|
rubyforge_project:
|
|
78
|
-
rubygems_version: 2.
|
|
76
|
+
rubygems_version: 2.6.8
|
|
79
77
|
signing_key:
|
|
80
78
|
specification_version: 4
|
|
81
79
|
summary: C extensions to optimize concurrent-ruby under MRI.
|