mirror of
https://github.com/msgpack/msgpack-c.git
synced 2025-10-23 08:31:45 +02:00
ruby: update rdoc
This commit is contained in:
@@ -27,10 +27,18 @@ static VALUE mMessagePack;
|
||||
* It enables to exchange structured objects between many languages like JSON.
|
||||
* But unlike JSON, it is very fast and small.
|
||||
*
|
||||
* You can install MessagePack with rubygems.
|
||||
*
|
||||
* gem install msgpack
|
||||
*
|
||||
* Simple usage is as follows.
|
||||
*
|
||||
* require 'msgpack'
|
||||
* msg = [1,2,3].to_msgpack #=> "\x93\x01\x02\x03"
|
||||
* MessagePack.unpack(msg) #=> [1,2,3]
|
||||
*
|
||||
* Use Unpacker class for streaming deserialization.
|
||||
*
|
||||
*/
|
||||
void Init_msgpack(void)
|
||||
{
|
||||
|
Reference in New Issue
Block a user