czmq-ffi-gen 0.14.0 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,16 +0,0 @@
1
- module CZMQ::FFI
2
- if available?
3
- opts = {
4
- blocking: true # only necessary on MRI to deal with the GIL.
5
- }
6
-
7
- ##
8
- # NOTE: this is to support the current stable release, CZMQ 3.0.2
9
- #
10
- # attach zsys_has_curve (as zproc_has_curve), if zproc_has_curve isn't
11
- # available
12
- unless methods.include? :zproc_has_curve
13
- attach_function :zproc_has_curve, :zsys_has_curve, [], :bool, **opts
14
- end
15
- end
16
- end