mirror of
https://github.com/msgpack/msgpack-c.git
synced 2025-03-19 13:02:13 +01:00

The exceptions for Rubinius are unnecessary now and are actually causing msgpack not to install due to the incorrect function prototypes that are in this file. In MRI, this is the prototype VALUE rb_gc_enable(); Anyway, these are unnecessary for Rubinius.
= MessagePack == Description MessagePack is a binary-based efficient object serialization library. It enables to exchange structured objects between many languages like JSON. But unlike JSON, it is very fast and small. Simple usage is as follows: require 'msgpack' msg = [1,2,3].to_msgpack #=> "\x93\x01\x02\x03" MessagePack.unpack(msg) #=> [1,2,3] Use MessagePack::Unpacker for streaming deserialization. == Installation === Archive Installation ruby extconf.rb make make install === Gem Installation gem install msgpack == Copyright Author:: frsyuki <frsyuki@users.sourceforge.jp> Copyright:: Copyright (c) 2008-2010 FURUHASHI Sadayuki License:: Apache License, Version 2.0