quack_concurrency 0.4.0 → 0.4.1
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/README.md +9 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0ab1347b652fc8daf227009ca005e3d7720b53e7bf25936047630b8b9ba56fcb
|
4
|
+
data.tar.gz: b0ef0c7084f46c038d6ec4ac91b940a2da738cfdec4b9ecf82ab02d15b0cb98a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '08e1d499bc5a4007a6649b58786c60693f3ff9b76cfc69ad59905d9f367df1a239dca09bca12685ccc166727ed3de9c2299b52535eb1b0a86e9eeb5264672c68'
|
7
|
+
data.tar.gz: f30d2a54cdc67b668ab83ad6bfbf18ac60aacdeaf3358d2c54d88be303152a29f9ebb44648e9cd249193c3d9bc02c3e616f69a6b1f65fdd607d4872b8f00e5a7
|
data/README.md
CHANGED
@@ -1,2 +1,10 @@
|
|
1
1
|
# Quack Concurrency
|
2
|
-
|
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
|
+
[](http://www.rubydoc.info/gems/quack_concurrency)
|