czmq-ffi-gen 0.12.0-x64-mingw32 → 0.13.0-x64-mingw32

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c0c539f0cb86b06082daf7460ede60e0a9eae858
4
- data.tar.gz: 9b8da4ca795df8c22ba5cc3dfae7046b521e395e
3
+ metadata.gz: 6cd68500db946592d1fd66b75d9cac6a507b245d
4
+ data.tar.gz: cda59dbf35b6a33b09b5210366370b39aad6a88f
5
5
  SHA512:
6
- metadata.gz: 7cd8fbb02dee9059cead3d0609056dfebe0d043c1e72b22d8dd1f5a84f9659eb86ee1c091dcfc5ec14672507bd9f072dcfcba4abc2f489027072e8ffb8443a1a
7
- data.tar.gz: 26f533bb747b737c526549bb7d0b82a57e1f8f04eaa69ff707ed48970696f650469747ee7160a09bbfa55e09d81225a45af78193f0ed6e5b4d626f05147deff6
6
+ metadata.gz: 497fa1b800a32e1eef2396d1027bd3a4bcd62cecad55dce001407b59174e1dfa64c6ad355da9172939176019eda5f71698ec86cef8802fb807db1d007e1eb8f7
7
+ data.tar.gz: 80dbc9b9f2aaa62746db7610de3a9f10bcd2fbce8dddccb3cc066f5f0e50f7938143956d471e4a8949afc5c939ff275f3c9378287ae9f4c30e9af7766d4d34a2
data/CHANGES.md CHANGED
@@ -1,3 +1,7 @@
1
+ 0.13.0 (01/01/2017)
2
+ -----
3
+ * update CZMQ low-level binding to v4.0.2 to fix #7
4
+
1
5
  0.12.0 (11/02/2016)
2
6
  -----
3
7
  * update CZMQ low-level binding to v4.0.0
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 > 3.0 (you **need to** build from master)
47
+ * CZMQ >= 4.0
48
48
  * ZMQ >= 4.0
49
49
 
50
- For security mechanisms like CURVE, you'll need:
51
- * [libsodium](https://github.com/jedisct1/libsodium)<Paste>
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 --HEAD
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)
@@ -5,7 +5,7 @@
5
5
 
6
6
  module CZMQ
7
7
  module FFI
8
- VERSION = '4.0.0'
8
+ VERSION = '4.0.3'
9
9
  end
10
10
  end
11
11
 
@@ -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
- # compare two items, for sorting
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
- # compare two items, for sorting
142
+ # Hash function for keys.
143
143
  # typedef size_t (zhashx_hash_fn) (
144
144
  # const void *key);
145
145
  #