iprocess 5.1.2 → 5.1.3
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.
- data/README.md +2 -4
- data/lib/iprocess/version.rb +1 -1
- metadata +1 -1
data/README.md
CHANGED
@@ -22,10 +22,8 @@ __EXAMPLES__
|
|
22
22
|
|
23
23
|
__1.__
|
24
24
|
|
25
|
-
|
26
|
-
|
27
|
-
as it may be serialized by Marshal(or the serializer of your choice, this is
|
28
|
-
configurable):
|
25
|
+
A demo of how to spawn three subprocesses. Although the block is executed in a
|
26
|
+
subprocess its return value is returned to the parent process.
|
29
27
|
|
30
28
|
```ruby
|
31
29
|
messages = IProcess.spawn(3) { {msg: "hello"} }
|
data/lib/iprocess/version.rb
CHANGED