mirror of
https://github.com/msgpack/msgpack-c.git
synced 2025-03-19 21:18:23 +01:00
Merge branch 'master' of git@github.com:msgpack/msgpack
This commit is contained in:
commit
43eab5c4e5
@ -1,3 +1,12 @@
|
|||||||
|
0.16_04
|
||||||
|
|
||||||
|
- no feature changes
|
||||||
|
|
||||||
|
0.16_02
|
||||||
|
|
||||||
|
- document enhancement(tokuhirom)
|
||||||
|
- M::I::XSUtil 0.26 is broken. use 0.27.
|
||||||
|
|
||||||
0.16_01
|
0.16_01
|
||||||
|
|
||||||
- added PP version (used in cases PERL_DATA_MESSAGEPACK=pp or fail to load XS).
|
- added PP version (used in cases PERL_DATA_MESSAGEPACK=pp or fail to load XS).
|
||||||
|
@ -23,3 +23,5 @@
|
|||||||
\.o$
|
\.o$
|
||||||
\.bs$
|
\.bs$
|
||||||
^Data-MessagePack-[0-9.]+/
|
^Data-MessagePack-[0-9.]+/
|
||||||
|
^\.testenv/test_pp.pl
|
||||||
|
^ppport.h$
|
||||||
|
@ -64,7 +64,7 @@ if($Module::Install::AUTHOR) {
|
|||||||
postamble qq{test :: test_pp\n\n};
|
postamble qq{test :: test_pp\n\n};
|
||||||
}
|
}
|
||||||
|
|
||||||
auto_set_repository();
|
repository('http://github.com/msgpack/msgpack');
|
||||||
auto_include;
|
auto_include;
|
||||||
WriteAll;
|
WriteAll;
|
||||||
|
|
||||||
|
16
perl/README
16
perl/README
@ -1,12 +1,16 @@
|
|||||||
NAME
|
NAME
|
||||||
Data::MessagePack - messagepack
|
Data::MessagePack - MessagePack serialising/deserialising
|
||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
my $packed = Data::MessagePack->pack($dat);
|
my $packed = Data::MessagePack->pack($dat);
|
||||||
my $unpacked = Data::MessagePack->unpack($dat);
|
my $unpacked = Data::MessagePack->unpack($dat);
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
Data::MessagePack is a binary packer for perl.
|
This module converts Perl data structures to MessagePack and vice versa.
|
||||||
|
|
||||||
|
MessagePack is a binary-based efficient object serialization format. It
|
||||||
|
enables to exchange structured objects between many languages like JSON.
|
||||||
|
But unlike JSON, it is very fast and small.
|
||||||
|
|
||||||
METHODS
|
METHODS
|
||||||
my $packed = Data::MessagePack->pack($data);
|
my $packed = Data::MessagePack->pack($data);
|
||||||
@ -22,13 +26,19 @@ Configuration Variables
|
|||||||
AUTHORS
|
AUTHORS
|
||||||
Tokuhiro Matsuno
|
Tokuhiro Matsuno
|
||||||
|
|
||||||
|
Makamaka Hannyaharamitu
|
||||||
|
|
||||||
THANKS TO
|
THANKS TO
|
||||||
Jun Kuriyama
|
Jun Kuriyama
|
||||||
|
|
||||||
|
Dan Kogai
|
||||||
|
|
||||||
|
FURUHASHI Sadayuki
|
||||||
|
|
||||||
LICENSE
|
LICENSE
|
||||||
This library is free software; you can redistribute it and/or modify it
|
This library is free software; you can redistribute it and/or modify it
|
||||||
under the same terms as Perl itself.
|
under the same terms as Perl itself.
|
||||||
|
|
||||||
SEE ALSO
|
SEE ALSO
|
||||||
<http://msgpack.sourceforge.jp/>
|
<http://msgpack.org/>
|
||||||
|
|
||||||
|
@ -3,7 +3,7 @@ use strict;
|
|||||||
use warnings;
|
use warnings;
|
||||||
use 5.008001;
|
use 5.008001;
|
||||||
|
|
||||||
our $VERSION = '0.16';
|
our $VERSION = '0.16_04';
|
||||||
our $PreferInteger = 0;
|
our $PreferInteger = 0;
|
||||||
|
|
||||||
our $true = do { bless \(my $dummy = 1), "Data::MessagePack::Boolean" };
|
our $true = do { bless \(my $dummy = 1), "Data::MessagePack::Boolean" };
|
||||||
@ -30,7 +30,7 @@ __END__
|
|||||||
|
|
||||||
=head1 NAME
|
=head1 NAME
|
||||||
|
|
||||||
Data::MessagePack - messagepack
|
Data::MessagePack - MessagePack serialising/deserialising
|
||||||
|
|
||||||
=head1 SYNOPSIS
|
=head1 SYNOPSIS
|
||||||
|
|
||||||
@ -39,7 +39,10 @@ Data::MessagePack - messagepack
|
|||||||
|
|
||||||
=head1 DESCRIPTION
|
=head1 DESCRIPTION
|
||||||
|
|
||||||
Data::MessagePack is a binary packer for perl.
|
This module converts Perl data structures to MessagePack and vice versa.
|
||||||
|
|
||||||
|
MessagePack is a binary-based efficient object serialization format.
|
||||||
|
It enables to exchange structured objects between many languages like JSON. But unlike JSON, it is very fast and small.
|
||||||
|
|
||||||
=head1 METHODS
|
=head1 METHODS
|
||||||
|
|
||||||
@ -69,10 +72,16 @@ Pack the string as int when the value looks like int(EXPERIMENTAL).
|
|||||||
|
|
||||||
Tokuhiro Matsuno
|
Tokuhiro Matsuno
|
||||||
|
|
||||||
|
Makamaka Hannyaharamitu
|
||||||
|
|
||||||
=head1 THANKS TO
|
=head1 THANKS TO
|
||||||
|
|
||||||
Jun Kuriyama
|
Jun Kuriyama
|
||||||
|
|
||||||
|
Dan Kogai
|
||||||
|
|
||||||
|
FURUHASHI Sadayuki
|
||||||
|
|
||||||
=head1 LICENSE
|
=head1 LICENSE
|
||||||
|
|
||||||
This library is free software; you can redistribute it and/or modify
|
This library is free software; you can redistribute it and/or modify
|
||||||
@ -81,5 +90,5 @@ it under the same terms as Perl itself.
|
|||||||
|
|
||||||
=head1 SEE ALSO
|
=head1 SEE ALSO
|
||||||
|
|
||||||
L<http://msgpack.sourceforge.jp/>
|
L<http://msgpack.org/>
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user