czmq-ffi-gen 0.14.0 → 1.0.0

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.
@@ -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