Module: NNG

Defined in:
lib/nng/version.rb,
ext/rbnng/rbnng.c

Defined Under Namespace

Modules: Error, Socket

Constant Summary collapse

VERSION =
'0.1.0'

Class Method Summary collapse

Class Method Details

.nng_versionObject



12
13
14
15
16
17
18
19
# File 'ext/rbnng/rbnng.c', line 12

static VALUE
library_version(VALUE self_)
{
  return rb_ary_new3(3,
                     INT2NUM(NNG_MAJOR_VERSION),
                     INT2NUM(NNG_MINOR_VERSION),
                     INT2NUM(NNG_PATCH_VERSION));
}