mirror of
https://github.com/msgpack/msgpack-python.git
synced 2026-04-14 06:50:20 +00:00
ruby: update gemspec
This commit is contained in:
parent
5fa589691c
commit
94c3998507
5 changed files with 25 additions and 17 deletions
28
ruby/README
28
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.
|
||||
|
||||
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
|
||||
|
||||
rake install
|
||||
ruby extconf.rb
|
||||
make
|
||||
make install
|
||||
|
||||
=== Gem Installation
|
||||
|
||||
gem install msgpack
|
||||
|
||||
|
||||
== Features/Problems
|
||||
|
||||
|
||||
== 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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue