Sha256: cb2895d7491fc37dfeec607e3fe50c4ae3784f1bf39ef8f3d88a99704d6ee62e

Contents?: true

Size: 1.02 KB

Versions: 12

Compression:

Stored size: 1.02 KB

Contents

/*
 * MessagePack for Ruby
 *
 * Copyright (C) 2008-2012 FURUHASHI Sadayuki
 *
 *    Licensed under the Apache License, Version 2.0 (the "License");
 *    you may not use this file except in compliance with the License.
 *    You may obtain a copy of the License at
 *
 *        http://www.apache.org/licenses/LICENSE-2.0
 *
 *    Unless required by applicable law or agreed to in writing, software
 *    distributed under the License is distributed on an "AS IS" BASIS,
 *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *    See the License for the specific language governing permissions and
 *    limitations under the License.
 */

#include "buffer_class.h"
#include "packer_class.h"
#include "unpacker_class.h"
#include "core_ext.h"

void Init_msgpack(void)
{
    VALUE mMessagePack = rb_define_module("MessagePack");

    MessagePack_Buffer_module_init(mMessagePack);
    MessagePack_Packer_module_init(mMessagePack);
    MessagePack_Unpacker_module_init(mMessagePack);
    MessagePack_core_ext_module_init();
}

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
msgpack-0.5.5-x86-mingw32 ext/msgpack/rbinit.c
msgpack-0.5.5 ext/msgpack/rbinit.c
msgpack-0.5.4-x86-mingw32 ext/msgpack/rbinit.c
msgpack-0.5.4 ext/msgpack/rbinit.c
msgpack-0.5.3-x86-mingw32 ext/msgpack/rbinit.c
msgpack-0.5.3 ext/msgpack/rbinit.c
msgpack-0.5.2-x86-mingw32 ext/msgpack/rbinit.c
msgpack-0.5.2 ext/msgpack/rbinit.c
msgpack-0.5.1-x86-mingw32 ext/msgpack/rbinit.c
msgpack-0.5.1 ext/msgpack/rbinit.c
msgpack-0.5.0-x86-mingw32 ext/msgpack/rbinit.c
msgpack-0.5.0 ext/msgpack/rbinit.c