czmq-ffi-gen 0.12.0-x64-mingw32 → 0.13.0-x64-mingw32
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/CHANGES.md +4 -0
- data/README.md +4 -7
- data/lib/czmq-ffi-gen/czmq/ffi/version.rb +1 -1
- data/lib/czmq-ffi-gen/czmq/ffi/zhash.rb +2 -1
- data/lib/czmq-ffi-gen/czmq/ffi/zhashx.rb +2 -2
- data/lib/czmq-ffi-gen/czmq/ffi/zsock.rb +406 -146
- data/lib/czmq-ffi-gen/czmq/ffi.rb +5 -5
- data/lib/czmq-ffi-gen/gem_version.rb +1 -1
- data/vendor/local/bin/inproc_lat.exe +0 -0
- data/vendor/local/bin/inproc_thr.exe +0 -0
- data/vendor/local/bin/libczmq.dll +0 -0
- data/vendor/local/bin/libzmq.dll +0 -0
- data/vendor/local/bin/local_lat.exe +0 -0
- data/vendor/local/bin/local_thr.exe +0 -0
- data/vendor/local/bin/remote_lat.exe +0 -0
- data/vendor/local/bin/remote_thr.exe +0 -0
- data/vendor/local/include/czmq_library.h +7 -1
- data/vendor/local/include/czmq_prelude.h +9 -3
- data/vendor/local/include/zhash.h +2 -1
- data/vendor/local/include/zhashx.h +2 -2
- data/vendor/local/include/zmq.h +32 -6
- data/vendor/local/include/zsock.h +170 -38
- data/vendor/local/include/zsock_option.inc +1258 -1188
- data/vendor/local/lib/libczmq.dll.a +0 -0
- data/vendor/local/lib/liblibzmq.dll.a +0 -0
- data/vendor/local/lib/libzmq-static.a +0 -0
- data/vendor/local/lib/pkgconfig/libczmq.pc +1 -1
- data/vendor/local/lib/pkgconfig/libzmq.pc +2 -2
- data/vendor/local/share/zmq/AUTHORS.txt +1 -0
- data/vendor/local/share/zmq/NEWS.txt +331 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6cd68500db946592d1fd66b75d9cac6a507b245d
|
4
|
+
data.tar.gz: cda59dbf35b6a33b09b5210366370b39aad6a88f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 497fa1b800a32e1eef2396d1027bd3a4bcd62cecad55dce001407b59174e1dfa64c6ad355da9172939176019eda5f71698ec86cef8802fb807db1d007e1eb8f7
|
7
|
+
data.tar.gz: 80dbc9b9f2aaa62746db7610de3a9f10bcd2fbce8dddccb3cc066f5f0e50f7938143956d471e4a8949afc5c939ff275f3c9378287ae9f4c30e9af7766d4d34a2
|
data/CHANGES.md
CHANGED
data/README.md
CHANGED
@@ -44,24 +44,21 @@ for the API documentation **for the released gem**.
|
|
44
44
|
|
45
45
|
## Requirements
|
46
46
|
|
47
|
-
* CZMQ
|
47
|
+
* CZMQ >= 4.0
|
48
48
|
* ZMQ >= 4.0
|
49
49
|
|
50
|
-
For security mechanisms like CURVE, you
|
51
|
-
* [libsodium](https://github.com/jedisct1/libsodium)
|
50
|
+
For security mechanisms like CURVE, you can use an external library:
|
51
|
+
* [libsodium](https://github.com/jedisct1/libsodium)
|
52
52
|
|
53
53
|
On OSX using homebrew, run:
|
54
54
|
|
55
55
|
$ brew install libsodium
|
56
56
|
$ brew install zmq --with-libsodium
|
57
|
-
$ brew install czmq
|
57
|
+
$ brew install czmq
|
58
58
|
|
59
59
|
If you're running Linux, go check [this page](http://zeromq.org/distro:_start)
|
60
60
|
to get more help. Make sure to install CZMQ, not only ZMQ.
|
61
61
|
|
62
|
-
**Note**: The option `--HEAD` is required because this binding is generated
|
63
|
-
directly from CZMQ's master branch. The current and older releases aren't supported.
|
64
|
-
|
65
62
|
### Supported Rubies
|
66
63
|
|
67
64
|
See [.travis.yml](https://github.com/paddor/czmq-ffi-gen/blob/master/.travis.yml)
|
@@ -356,7 +356,8 @@ module CZMQ
|
|
356
356
|
result
|
357
357
|
end
|
358
358
|
|
359
|
-
# Set hash for automatic value destruction
|
359
|
+
# Set hash for automatic value destruction. Note that this assumes that
|
360
|
+
# values are NULL-terminated strings. Do not use with different types.
|
360
361
|
#
|
361
362
|
# @return [void]
|
362
363
|
def autofree()
|
@@ -123,7 +123,7 @@ module CZMQ
|
|
123
123
|
end
|
124
124
|
|
125
125
|
# Create a new callback of the following type:
|
126
|
-
#
|
126
|
+
# Destroy an item.
|
127
127
|
# typedef void (zhashx_free_fn) (
|
128
128
|
# void *data);
|
129
129
|
#
|
@@ -139,7 +139,7 @@ module CZMQ
|
|
139
139
|
end
|
140
140
|
|
141
141
|
# Create a new callback of the following type:
|
142
|
-
#
|
142
|
+
# Hash function for keys.
|
143
143
|
# typedef size_t (zhashx_hash_fn) (
|
144
144
|
# const void *key);
|
145
145
|
#
|