lang/c/msgpack: added license notifications

git-svn-id: file:///Users/frsyuki/project/msgpack-git/svn/x@60 5a5092ae-2292-43ba-b2d5-dcab9c1a2731
This commit is contained in:
frsyuki
2009-02-15 09:09:57 +00:00
parent b5f13e7d26
commit a721837ed0
31 changed files with 332 additions and 11 deletions

View File

@@ -13,7 +13,6 @@ ext/unpack.c
ext/unpack.h
ext/unpack_context.h
ext/unpack_inline.c
msgpack/pack/inline_context.h
msgpack/pack/inline_impl.h
msgpack/unpack/inline_context.h
msgpack/unpack/inline_impl.h

View File

@@ -1,8 +1,8 @@
module MessagePack
module VERSION #:nodoc:
MAJOR = 0
MINOR = 0
TINY = 1
MINOR = 1
TINY = 0
STRING = [MAJOR, MINOR, TINY].join('.')
end

View File

@@ -10,7 +10,6 @@ cp unpack.h gem/ext/
cp unpack_context.h gem/ext/
cp unpack_inline.c gem/ext/
cp ../README gem/README.txt
cp ../msgpack/pack/inline_context.h gem/msgpack/pack/
cp ../msgpack/pack/inline_impl.h gem/msgpack/pack/
cp ../msgpack/unpack/inline_context.h gem/msgpack/unpack/
cp ../msgpack/unpack/inline_impl.h gem/msgpack/unpack/