Sha256: 11d7c147d01c858dffa212b1a4b37812f9d7f149182aaec5c3f16abe0b0afde2

Contents?: true

Size: 728 Bytes

Versions: 45

Compression:

Stored size: 728 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(major);
    list[1] = INT2NUM(minor);
    list[2] = INT2NUM(patch);

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

VALUE mPsych;

void Init_psych(void)
{
    #ifdef HAVE_RB_EXT_RACTOR_SAFE
        RB_EXT_RACTOR_SAFE(true);
    #endif
    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();
}

Version data entries

45 entries across 45 versions & 5 rubygems

Version Path
cybrid_api_id_ruby-0.123.179 vendor/bundle/ruby/3.3.0/gems/psych-5.2.3/ext/psych/psych.c
cybrid_api_organization_ruby-0.123.179 vendor/bundle/ruby/3.3.0/gems/psych-5.2.3/ext/psych/psych.c
cybrid_api_organization_ruby-0.123.177 vendor/bundle/ruby/3.3.0/gems/psych-5.2.3/ext/psych/psych.c
cybrid_api_id_ruby-0.123.177 vendor/bundle/ruby/3.3.0/gems/psych-5.2.3/ext/psych/psych.c
cybrid_api_organization_ruby-0.123.176 vendor/bundle/ruby/3.3.0/gems/psych-5.2.3/ext/psych/psych.c
cybrid_api_id_ruby-0.123.176 vendor/bundle/ruby/3.3.0/gems/psych-5.2.3/ext/psych/psych.c
cybrid_api_organization_ruby-0.123.175 vendor/bundle/ruby/3.3.0/gems/psych-5.2.3/ext/psych/psych.c
cybrid_api_id_ruby-0.123.175 vendor/bundle/ruby/3.3.0/gems/psych-5.2.3/ext/psych/psych.c
cybrid_api_id_ruby-0.123.174 vendor/bundle/ruby/3.3.0/gems/psych-5.2.3/ext/psych/psych.c
cybrid_api_organization_ruby-0.123.174 vendor/bundle/ruby/3.3.0/gems/psych-5.2.3/ext/psych/psych.c
cybrid_api_id_ruby-0.123.173 vendor/bundle/ruby/3.3.0/gems/psych-5.2.3/ext/psych/psych.c
cybrid_api_organization_ruby-0.123.173 vendor/bundle/ruby/3.3.0/gems/psych-5.2.3/ext/psych/psych.c
cybrid_api_organization_ruby-0.123.172 vendor/bundle/ruby/3.3.0/gems/psych-5.2.3/ext/psych/psych.c
cybrid_api_id_ruby-0.123.172 vendor/bundle/ruby/3.3.0/gems/psych-5.2.3/ext/psych/psych.c
cybrid_api_id_ruby-0.123.171 vendor/bundle/ruby/3.3.0/gems/psych-5.2.3/ext/psych/psych.c
cybrid_api_organization_ruby-0.123.171 vendor/bundle/ruby/3.3.0/gems/psych-5.2.3/ext/psych/psych.c
cybrid_api_id_ruby-0.123.170 vendor/bundle/ruby/3.3.0/gems/psych-5.2.3/ext/psych/psych.c
cybrid_api_organization_ruby-0.123.170 vendor/bundle/ruby/3.3.0/gems/psych-5.2.3/ext/psych/psych.c
cybrid_api_organization_ruby-0.123.163 vendor/bundle/ruby/3.3.0/gems/psych-5.2.3/ext/psych/psych.c
cybrid_api_organization_ruby-0.123.162 vendor/bundle/ruby/3.3.0/gems/psych-5.2.3/ext/psych/psych.c