From 3a6888d1059faa14629b805531e98739142fd2c8 Mon Sep 17 00:00:00 2001 From: frsyuki Date: Fri, 19 Mar 2010 12:06:12 +0900 Subject: [PATCH] add README.md --- NOTICE | 4 ++++ README.md | 39 +++++++++++++++++++++++++++++++++++++++ ruby/NOTICE | 6 +++++- 3 files changed, 48 insertions(+), 1 deletion(-) create mode 100644 NOTICE create mode 100644 README.md diff --git a/NOTICE b/NOTICE new file mode 100644 index 00000000..dac900a0 --- /dev/null +++ b/NOTICE @@ -0,0 +1,4 @@ +MessagePack is developed by FURUHASHI Sadayuki, licensed under Apache License, +Version 2.0. The original software and related information is available at +http://msgpack.sourceforge.net/. + diff --git a/README.md b/README.md new file mode 100644 index 00000000..9b650e83 --- /dev/null +++ b/README.md @@ -0,0 +1,39 @@ +MessagePack-RPC +=============== + +## Overview + +MessagePack-RPC is an inter-process messaging library that uses [MessagePack](http://msgpack.sourceforge.net/) for object serialization. + +MessagePack enables very fast streaming serialization/deserialization, and communication between heterogeneous languages like Ruby <-> C++. + + - Asynchronous, synchronous and callback interfaces are supported. + - Scalable event-driven architecture. + - Deflate compression is supported. + + +## Status + +Currently, MessagePack-RPC supports only Ruby. MessagePack-RPC for Ruby is available by RubyGems: + + $ gem install msgpack-rpc + + +## License + + Copyright (C) 2009-2010 FURUHASHI Sadayuki + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +See also NOTICE file. + diff --git a/ruby/NOTICE b/ruby/NOTICE index e706f2ab..159df6ed 100644 --- a/ruby/NOTICE +++ b/ruby/NOTICE @@ -1,4 +1,8 @@ +MessagePack-RPC for Ruby is developed by FURUHASHI Sadayuki, licensed under +Apache License, Version 2.0. The original software and related information +is available at http://msgpack.sourceforge.net/. + MessagePack is developed by FURUHASHI Sadayuki, licensed under Apache License, Version 2.0. The original software and related information is available at -http://msgpack.sourceforge.jp/. +http://msgpack.sourceforge.net/.