quack_concurrency 0.4.0 → 0.4.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +9 -1
  3. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 10e029270e81499f14736ffdbd03926f83696ded0fd26b8115fe476d9c7724a9
4
- data.tar.gz: 057fddbd478fb2fc8a7ff785f3f0315b360c01491fd4db927f220cadfe7fad64
3
+ metadata.gz: 0ab1347b652fc8daf227009ca005e3d7720b53e7bf25936047630b8b9ba56fcb
4
+ data.tar.gz: b0ef0c7084f46c038d6ec4ac91b940a2da738cfdec4b9ecf82ab02d15b0cb98a
5
5
  SHA512:
6
- metadata.gz: 9859b662740ad3c4a0d5808b0af646be37d6bad5d06be25885746cd33aaadda174d914c6aabf901a88d7b9ca2a0dffef7424c51e4b7533a94c0031640cacf53a
7
- data.tar.gz: cf1689c54c26edb32c9ea46fccb9872cd2c239407401818cbf6cd1c3392ffe52907322a0b2a9a08e53637d42e5707e8415a11c88f666dd1d92006a5198330f3f
6
+ metadata.gz: '08e1d499bc5a4007a6649b58786c60693f3ff9b76cfc69ad59905d9f367df1a239dca09bca12685ccc166727ed3de9c2299b52535eb1b0a86e9eeb5264672c68'
7
+ data.tar.gz: f30d2a54cdc67b668ab83ad6bfbf18ac60aacdeaf3358d2c54d88be303152a29f9ebb44648e9cd249193c3d9bc02c3e616f69a6b1f65fdd607d4872b8f00e5a7
data/README.md CHANGED
@@ -1,2 +1,10 @@
1
1
  # Quack Concurrency
2
- Offers concurrency tools that could also be found in the Concurrent Ruby project. However, all these tools will also accept duck types to allow core classes to behave as desired.
2
+ This Ruby Gem offers a few concurrency tools that could also be found in [*Concurrent Ruby*](https://github.com/ruby-concurrency/concurrent-ruby). However, all of *Quack Concurrency's* tools will accept duck types of Ruby's core classes to adjust the blocking behaviour of the tools. The tools include: `Future`, `Queue`, `ReentrantMutex`, `Semaphore` and `Waiter`. Each tool will accept a duck type for `ConditionVariable` and `Mutex`. If none are given `::ConditionVariable` and `::Mutex` are used by default. *TODO: list some projects useing it*.
3
+
4
+ # Install
5
+ `gem install quack_concurrency`
6
+
7
+ Then simply `require 'quack_concurrency'` in your project.
8
+
9
+ # Documentation
10
+ [![Yard Docs](http://img.shields.io/badge/yard-docs-blue.svg)](http://www.rubydoc.info/gems/quack_concurrency)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: quack_concurrency
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rob Fors