msgpack-python/ruby
2010-06-29 15:12:52 +09:00
..
test ruby: MessagePack::VERSION constant 2010-06-29 15:12:52 +09:00
AUTHORS ruby: 0.3.8 2010-04-22 14:56:25 +09:00
bench.rb lang/c/msgpack: autotoolized 2009-02-15 09:09:56 +00:00
ChangeLog ruby: 0.3.8 2010-04-22 14:56:25 +09:00
extconf.rb ruby: MessagePack::VERSION constant 2010-06-29 15:12:52 +09:00
makegem.sh ruby: fixes RDoc of Unpacker#execute and Unpacker#execute_impl 2010-06-29 14:54:09 +09:00
msgpack.gemspec ruby: MessagePack::VERSION constant 2010-06-29 15:12:52 +09:00
pack.c ruby: update rdoc 2010-05-25 02:55:58 +09:00
pack.h ruby: update gemspec 2010-05-26 07:43:05 +09:00
rbinit.c ruby: MessagePack::VERSION constant 2010-06-29 15:12:52 +09:00
README ruby: update gemspec 2010-05-26 07:43:05 +09:00
unpack.c ruby: fixes SEGV problem caused by GC bug at MessagePack_Unpacker_mark. 2010-06-29 14:56:23 +09:00
unpack.h ruby: update gemspec 2010-05-26 07:43:05 +09:00
version.rb ruby: MessagePack::VERSION constant 2010-06-29 15:12:52 +09:00

= 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