concurrent-ruby-ext 1.0.0.pre3-x86-mingw32 → 1.0.0.pre4-x86-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +11 -1
- data/README.md +8 -41
- data/lib/concurrent/1.9/extension.so +0 -0
- 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 +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5e55013c08a65c32068f2bffd8e5e87f84f676ce
|
4
|
+
data.tar.gz: 5bd6b4725b76290f29fdd5a5c79107ca04fb2c1e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6942529176bcbc9c8f090cf5c9dc8b1f7b922db6576e525394bc947219f4f591ad33372dac1753b3ca330f25d8dd4bb05ec0c1f400da994d5441630836303912
|
7
|
+
data.tar.gz: f075b9bd8f1c1462ab2fdf2b90e2d9d98af5e3e1929efc03bda69a6fa01129a6f2bf71c0d355493c2f6cafbc2c221c6b0129a88310470f3ae5046e4392ea3502
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
### Upcoming Release v1.0.0 (TBD)
|
2
2
|
|
3
|
-
## Current Release v1.0.0.
|
3
|
+
## Current Release v1.0.0.pre4 (08 October 2015)
|
4
|
+
|
5
|
+
* Adopted a project Code of Conduct
|
6
|
+
* Cleared interpreter warnings
|
7
|
+
* Fixed bug in `ThreadPoolExecutor` task count methods
|
8
|
+
* Fixed bug in 'LockFreeLinkedSet'
|
9
|
+
* Improved Java extension loading
|
10
|
+
* Handle Exception children in Edge::Future
|
11
|
+
* Continued improvements to channel
|
12
|
+
|
13
|
+
### Release v1.0.0.pre3 (29 September 2015)
|
4
14
|
|
5
15
|
* Removed interpreter warnings.
|
6
16
|
* Shared constants now in `lib/concurrent/constants.rb`
|
data/README.md
CHANGED
@@ -49,6 +49,14 @@ MRI 1.9.3, 2.0, 2.1, 2.2, JRuby (1.9 mode), and Rubinius 2.x are supported.
|
|
49
49
|
This gem should be fully compatible with any interpreter that is compliant with Ruby 1.9.3 or newer.
|
50
50
|
Java 8 is preferred for JRuby but every Java version on which JRuby 9000 runs will be supported.
|
51
51
|
|
52
|
+
## Thread Safety
|
53
|
+
|
54
|
+
*Concurrent Ruby makes the strongest thread safety guarantees of any Ruby concurrency library. We are the only library with a published [memory model](https://github.com/ruby-concurrency/concurrent-ruby/blob/master/doc/synchronization.md) which provides consistent behavior and guarantees on all three of the main Ruby interpreters (MRI/CRuby, JRuby, and Rubinius).*
|
55
|
+
|
56
|
+
Every abstraction in this library is thread safe. Similarly, all are deadlock free and many are fully lock free. Specific thread safety guarantees are documented with each abstraction.
|
57
|
+
|
58
|
+
It is critical to remember, however, that Ruby is a language of mutable references. *No* concurrency library for Ruby can ever prevent the user from making thread safety mistakes (such as sharing a mutable object between threads and modifying it on both threads) or from creating deadlocks through incorrect use of locks. All the library can do is provide safe abstractions which encourage safe practices. Concurrent Ruby provides more safe concurrency abstractions than any other Ruby library, many of which support the mantra of ["Do not communicate by sharing memory; instead, share memory by communicating"](https://blog.golang.org/share-memory-by-communicating). Concurrent Ruby is also the only Ruby library which provides a full suite of thread safe and immutable variable types and data structures.
|
59
|
+
|
52
60
|
## Features & Documentation
|
53
61
|
|
54
62
|
We have a roadmap guiding our work toward the [v1.0.0 release](https://github.com/ruby-concurrency/concurrent-ruby/issues/257).
|
@@ -229,39 +237,6 @@ and load the appropriate C extensions.
|
|
229
237
|
No gems should depend on `concurrent-ruby-ext`. Doing so will force C extensions on your users.
|
230
238
|
The best practice is to depend on `concurrent-ruby` and let users to decide if they want C extensions.
|
231
239
|
|
232
|
-
### Building
|
233
|
-
|
234
|
-
All published versions of this gem (core, extension, and several platform-specific packages) are compiled,
|
235
|
-
packaged, tested, and published using an open, [automated process](https://github.com/ruby-concurrency/rake-compiler-dev-box).
|
236
|
-
This process can also be used to create pre-compiled binaries of the extension gem for virtually
|
237
|
-
any platform. *Documentation is forthcoming...*
|
238
|
-
|
239
|
-
```
|
240
|
-
*MRI only*
|
241
|
-
bundle exec rake build:native # Build concurrent-ruby-ext-<version>-<platform>.gem into the pkg dir
|
242
|
-
bundle exec rake compile:extension # Compile extension
|
243
|
-
|
244
|
-
*JRuby only*
|
245
|
-
bundle exec rake build # Build JRuby-specific core gem (alias for `build:core`)
|
246
|
-
bundle exec rake build:core # Build concurrent-ruby-<version>-java.gem into the pkg directory
|
247
|
-
|
248
|
-
*All except JRuby*
|
249
|
-
bundle exec rake build:core # Build concurrent-ruby-<version>.gem into the pkg directory
|
250
|
-
bundle exec rake build:ext # Build concurrent-ruby-ext-<version>.gem into the pkg directory
|
251
|
-
|
252
|
-
*When Docker IS installed*
|
253
|
-
bundle exec rake build:windows # Build the windows binary <version> gems per rake-compiler-dock
|
254
|
-
bundle exec rake build # Build core, extension, and edge gems, including Windows binaries
|
255
|
-
|
256
|
-
*When Docker is NOT installed*
|
257
|
-
bundle exec rake build # Build core, extension, and edge gems (excluding Windows binaries)
|
258
|
-
|
259
|
-
*All*
|
260
|
-
bundle exec rake clean # Remove any temporary products
|
261
|
-
bundle exec rake clobber # Remove any generated file
|
262
|
-
bundle exec rake compile # Compile all the extensions
|
263
|
-
```
|
264
|
-
|
265
240
|
## Maintainers
|
266
241
|
|
267
242
|
* [Jerry D'Antonio](https://github.com/jdantonio) (creator)
|
@@ -277,14 +252,6 @@ bundle exec rake compile # Compile all the extensions
|
|
277
252
|
* [Charles Oliver Nutter](https://github.com/headius) for the `atomic` and `thread_safe` gems
|
278
253
|
* [thedarkone](https://github.com/thedarkone) for the `thread_safe` gem
|
279
254
|
|
280
|
-
## Contributing
|
281
|
-
|
282
|
-
1. Fork it
|
283
|
-
2. Create your feature branch (`git checkout -b my-new-feature`)
|
284
|
-
3. Commit your changes (`git commit -am 'Add some feature'`)
|
285
|
-
4. Push to the branch (`git push origin my-new-feature`)
|
286
|
-
5. Create new Pull Request
|
287
|
-
|
288
255
|
## License and Copyright
|
289
256
|
|
290
257
|
*Concurrent Ruby* is free software released under the [MIT License](http://www.opensource.org/licenses/MIT).
|
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.0.
|
4
|
+
version: 1.0.0.pre4
|
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: 2015-
|
12
|
+
date: 2015-10-08 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.0.
|
20
|
+
version: 1.0.0.pre4
|
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.0.
|
27
|
+
version: 1.0.0.pre4
|
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.
|