Sha256: c9cb6e262c55b4b080b3518803b84e26afa5f54d131884161e88436b26233066

Contents?: true

Size: 694 Bytes

Versions: 22

Compression:

Stored size: 694 Bytes

Contents

#include <psych.h>

/* call-seq: Psych.libyaml_version
 *
 * Returns the version of libyaml being used
 */
static VALUE libyaml_version(VALUE module)
{
    int major, minor, patch;
    VALUE list[3];

    yaml_get_version(&major, &minor, &patch);

    list[0] = INT2NUM((long)major);
    list[1] = INT2NUM((long)minor);
    list[2] = INT2NUM((long)patch);

    return rb_ary_new4((long)3, list);
}

VALUE mPsych;

void Init_psych()
{
    mPsych = rb_define_module("Psych");

    rb_define_singleton_method(mPsych, "libyaml_version", libyaml_version, 0);

    Init_psych_parser();
    Init_psych_emitter();
    Init_psych_to_ruby();
    Init_psych_yaml_tree();
}
/* vim: set noet sws=4 sw=4: */

Version data entries

22 entries across 22 versions & 3 rubygems

Version Path
psych-2.0.6 ext/psych/psych.c
psych-shopifork-2.0.5 ext/psych/psych.c
psych-2.0.5 ext/psych/psych.c
psych-2.0.4 ext/psych/psych.c
psych-shopifork-2.0.3 ext/psych/psych.c
psych-2.0.3 ext/psych/psych.c
psych-2.0.2 ext/psych/psych.c
psych-shopifork-2.0.0 ext/psych/psych.c
psych-2.0.1 ext/psych/psych.c
psych-2.0.0 ext/psych/psych.c
psych-1.3.4 ext/psych/psych.c
psych-1.3.3 ext/psych/psych.c
psych-1.3.2 ext/psych/psych.c
psych-1.3.1 ext/psych/psych.c
psych-1.3.0 ext/psych/psych.c
psych-1.2.2 ext/psych/psych.c
psych-1.2.2.rc1 ext/psych/psych.c
psych-1.2.1 ext/psych/psych.c
psych-1.2.0 ext/psych/psych.c
psych-1.1.1 ext/psych/psych.c