diff options
| author | frsyuki <frsyuki@users.sourceforge.jp> | 2010-05-26 07:43:05 +0900 |
|---|---|---|
| committer | frsyuki <frsyuki@users.sourceforge.jp> | 2010-05-26 07:43:05 +0900 |
| commit | 94c39985079cff23d85d333ea69d554216ac79e0 (patch) | |
| tree | 42842dc996af959be586bf86c3f6cde48f7f0210 /ruby/README | |
| parent | 5fa589691c780735fae153e7e6907906663349a1 (diff) | |
| download | msgpack-python-94c39985079cff23d85d333ea69d554216ac79e0.tar.gz | |
ruby: update gemspec
Diffstat (limited to 'ruby/README')
| -rw-r--r-- | ruby/README | 26 |
1 files changed, 17 insertions, 9 deletions
diff --git a/ruby/README b/ruby/README index 859ae2b..051a769 100644 --- a/ruby/README +++ b/ruby/README @@ -1,29 +1,37 @@ = 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. -== Installation +Simple usage is as follows: -=== Archive Installation + require 'msgpack' + msg = [1,2,3].to_msgpack #=> "\x93\x01\x02\x03" + MessagePack.unpack(msg) #=> [1,2,3] - rake install +Use MessagePack::Unpacker for streaming deserialization. -=== Gem Installation - gem install msgpack +== Installation +=== Archive Installation -== Features/Problems + ruby extconf.rb + make + make install +=== Gem Installation -== Synopsis + gem install msgpack == Copyright Author:: frsyuki <frsyuki@users.sourceforge.jp> -Copyright:: Copyright (c) 2008-2009 frsyuki +Copyright:: Copyright (c) 2008-2010 FURUHASHI Sadayuki License:: Apache License, Version 2.0 + |
