concurrent-ruby-ext 1.0.3-x86-mingw32 → 1.0.4-x86-mingw32

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4b1b186855924e8a45acfa23602d2ce26167ec41
4
- data.tar.gz: 85844791e44fa209b3a14b459e069a136491de7e
3
+ metadata.gz: 29c658e9be255da63d964daf3684f8088a0f99f0
4
+ data.tar.gz: 8579df21933e193e6153f7c7388d66117a00951a
5
5
  SHA512:
6
- metadata.gz: e5b8217249ce39c8a44df6ec2f6f123c20ae9b5626694ecb7d5a25a6c907bda6a3e8a34d8276db66107f16c10908d2485117b85caf7085e6bc3775842f33dd27
7
- data.tar.gz: 690f97a9dfd8d7905a0cef3fec8b409ecb4d46b9cd13b4703d7e3d5c7c717de6271e3f7ecca95618dcb02c5d4a435d75d95fdd5af239ea63ddda8299a0b2a35d
6
+ metadata.gz: d1849a0fa03bec01a29ab1bccdbb3d81146d5ba5bc02a78606b739b287248b1c54750124804414a26c65f99bbdcc0943bc7e391feb6567ba7360b0198c05ef24
7
+ data.tar.gz: 055b2cdc5b31ac025e08b1b5abdf48fd28991d41c5e9d36e362c0b7357f02570577ba0e83741cbddc367b7e82af37c0805aac48bf1a4e644d66da348ec35ccf8
data/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
- ## Current Release v1.0.3 (26 Nov 2016)
1
+ ## Current Release v1.0.4 (27 Dec 2016)
2
2
 
3
+ concurrent-ruby:
4
+
5
+ * Nothing
6
+
7
+ concurrent-ruby-edge:
8
+
9
+ * New promises' API renamed, lots of improvements, edge bumped to 0.3.0
10
+ * **Incompatible** with previous 0.2.3 version
11
+ * see https://github.com/ruby-concurrency/concurrent-ruby/pull/522
12
+
13
+ ## Release v1.0.3 (17 Dec 2016)
14
+
15
+ * Trigger execution of flattened delayed futures
16
+ * Avoid forking for processor_count if possible
3
17
  * Semaphore Mutex and JRuby parity
4
18
  * Adds Map#each as alias to Map#each_pair
5
19
  * Fix uninitialized instance variables
data/README.md CHANGED
@@ -9,39 +9,28 @@
9
9
  [![License](https://img.shields.io/badge/license-MIT-green.svg)](http://opensource.org/licenses/MIT)
10
10
  [![Gitter chat](https://img.shields.io/badge/IRC%20(gitter)-devs%20%26%20users-brightgreen.svg)](https://gitter.im/ruby-concurrency/concurrent-ruby)
11
11
 
12
- <table>
13
- <tr>
14
- <td align="left" valign="top">
15
- <p>
16
- Modern concurrency tools for Ruby. Inspired by
17
- <a href="http://www.erlang.org/doc/reference_manual/processes.html">Erlang</a>,
18
- <a href="http://clojure.org/concurrent_programming">Clojure</a>,
19
- <a href="http://akka.io/">Scala</a>,
20
- <a href="http://www.haskell.org/haskellwiki/Applications_and_libraries/Concurrency_and_parallelism#Concurrent_Haskell">Haskell</a>,
21
- <a href="http://blogs.msdn.com/b/dsyme/archive/2010/02/15/async-and-parallel-design-patterns-in-f-part-3-agents.aspx">F#</a>,
22
- <a href="http://msdn.microsoft.com/en-us/library/vstudio/hh191443.aspx">C#</a>,
23
- <a href="http://docs.oracle.com/javase/7/docs/api/java/util/concurrent/package-summary.html">Java</a>,
24
- and classic concurrency patterns.
25
- </p>
26
- <p>
27
- The design goals of this gem are:
28
- <ul>
29
- <li>Be an 'unopinionated' toolbox that provides useful utilities without debating which is better or why</li>
30
- <li>Remain free of external gem dependencies</li>
31
- <li>Stay true to the spirit of the languages providing inspiration</li>
32
- <li>But implement in a way that makes sense for Ruby</li>
33
- <li>Keep the semantics as idiomatic Ruby as possible</li>
34
- <li>Support features that make sense in Ruby</li>
35
- <li>Exclude features that don't make sense in Ruby</li>
36
- <li>Be small, lean, and loosely coupled</li>
37
- </ul>
38
- </p>
39
- </td>
40
- <td align="right" valign="top">
41
- <img src="https://raw.githubusercontent.com/ruby-concurrency/concurrent-ruby/master/doc/logo/concurrent-ruby-logo-300x300.png"/>
42
- </td>
43
- </tr>
44
- </table>
12
+ Modern concurrency tools for Ruby. Inspired by
13
+ [Erlang](http://www.erlang.org/doc/reference_manual/processes.html),
14
+ [Clojure](http://clojure.org/concurrent_programming),
15
+ [Scala](http://akka.io/),
16
+ [Haskell](http://www.haskell.org/haskellwiki/Applications_and_libraries/Concurrency_and_parallelism#Concurrent_Haskell),
17
+ [F#](http://blogs.msdn.com/b/dsyme/archive/2010/02/15/async-and-parallel-design-patterns-in-f-part-3-agents.aspx),
18
+ [C#](http://msdn.microsoft.com/en-us/library/vstudio/hh191443.aspx),
19
+ [Java](http://docs.oracle.com/javase/7/docs/api/java/util/concurrent/package-summary.html),
20
+ and classic concurrency patterns.
21
+
22
+ <img src="https://raw.githubusercontent.com/ruby-concurrency/concurrent-ruby/master/doc/logo/concurrent-ruby-logo-300x300.png" align="right" style="margin-left: 20px;" />
23
+
24
+ The design goals of this gem are:
25
+
26
+ * Be an 'unopinionated' toolbox that provides useful utilities without debating which is better or why
27
+ * Remain free of external gem dependencies
28
+ * Stay true to the spirit of the languages providing inspiration
29
+ * But implement in a way that makes sense for Ruby
30
+ * Keep the semantics as idiomatic Ruby as possible
31
+ * Support features that make sense in Ruby
32
+ * Exclude features that don't make sense in Ruby
33
+ * Be small, lean, and loosely coupled
45
34
 
46
35
  ### Supported Ruby versions
47
36
 
@@ -127,13 +116,13 @@ These features are under active development and may change frequently. They are
127
116
  keep backward compatibility (there may also lack tests and documentation). Semantic versions will
128
117
  be obeyed though. Features developed in `concurrent-ruby-edge` are expected to move to `concurrent-ruby` when final.
129
118
 
130
- * [Actor](http://ruby-concurrency.github.io/concurrent-ruby/Concurrent/Actor.html):
131
- Implements the Actor Model, where concurrent actors exchange messages.
132
- * [New Future Framework](http://ruby-concurrency.github.io/concurrent-ruby/Concurrent/Edge/FutureShortcuts.html):
119
+ * [Promises Framework](http://ruby-concurrency.github.io/concurrent-ruby/Concurrent/Promises.html):
133
120
  Unified implementation of futures and promises which combines features of previous `Future`,
134
121
  `Promise`, `IVar`, `Event`, `dataflow`, `Delay`, and `TimerTask` into a single framework. It extensively uses the
135
122
  new synchronization layer to make all the features **non-blocking** and **lock-free**, with the exception of obviously blocking
136
123
  operations like `#wait`, `#value`. It also offers better performance.
124
+ * [Actor](http://ruby-concurrency.github.io/concurrent-ruby/Concurrent/Actor.html):
125
+ Implements the Actor Model, where concurrent actors exchange messages.
137
126
  * [Channel](http://ruby-concurrency.github.io/concurrent-ruby/Concurrent/Edge/Channel.html):
138
127
  Communicating Sequential Processes ([CSP](https://en.wikipedia.org/wiki/Communicating_sequential_processes)).
139
128
  Functionally equivalent to Go [channels](https://tour.golang.org/concurrency/2) with additional
@@ -141,15 +130,16 @@ be obeyed though. Features developed in `concurrent-ruby-edge` are expected to m
141
130
  * [LazyRegister](http://ruby-concurrency.github.io/concurrent-ruby/Concurrent/LazyRegister.html)
142
131
  * [AtomicMarkableReference](http://ruby-concurrency.github.io/concurrent-ruby/Concurrent/Edge/AtomicMarkableReference.html)
143
132
  * [LockFreeLinkedSet](http://ruby-concurrency.github.io/concurrent-ruby/Concurrent/Edge/LockFreeLinkedSet.html)
144
- * [LockFreeStack](http://ruby-concurrency.github.io/concurrent-ruby/Concurrent/Edge/LockFreeStack.html)
133
+ * [LockFreeStack](http://ruby-concurrency.github.io/concurrent-ruby/Concurrent/LockFreeStack.html)
145
134
 
146
135
  #### Statuses:
147
136
 
148
137
  *Why are these not in core?*
149
138
 
139
+ - **Promises Framework** - They are being finalized to be able to be moved to core. They'll deprecate old
140
+ implementation.
150
141
  - **Actor** - Partial documentation and tests; depends on new future/promise framework; stability is good.
151
142
  - **Channel** - Brand new implementation; partial documentation and tests; stability is good.
152
- - **Future/Promise Framework** - API changes; partial documentation and tests; stability is good.
153
143
  - **LazyRegister** - Missing documentation and tests.
154
144
  - **AtomicMarkableReference, LockFreeLinkedSet, LockFreeStack** - Need real world battle testing.
155
145
 
Binary file
Binary file
Binary file
Binary file
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.3
4
+ version: 1.0.4
5
5
  platform: x86-mingw32
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: 2016-12-11 00:00:00.000000000 Z
12
+ date: 2016-12-27 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: concurrent-ruby
@@ -17,14 +17,14 @@ dependencies:
17
17
  requirements:
18
18
  - - '='
19
19
  - !ruby/object:Gem::Version
20
- version: 1.0.3
20
+ version: 1.0.4
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.3
27
+ version: 1.0.4
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.