mirror of
https://github.com/msgpack/msgpack-c.git
synced 2025-03-19 13:02:13 +01:00

diff --git a/perl/Changes b/perl/Changes index 18041d4..fb31a69 100644 --- a/perl/Changes +++ b/perl/Changes @@ -1,3 +1,8 @@ +0.02 + + - added $Data::MessagePack::PreferInteger + (requested by yappo++) + 0.01 - initial release to CPAN
45 lines
634 B
Perl
45 lines
634 B
Perl
package Data::MessagePack;
|
|
use strict;
|
|
use warnings;
|
|
use XSLoader;
|
|
use 5.008001;
|
|
|
|
our $VERSION = '0.02';
|
|
|
|
XSLoader::load(__PACKAGE__, $VERSION);
|
|
|
|
1;
|
|
__END__
|
|
|
|
=head1 NAME
|
|
|
|
Data::MessagePack - messagepack
|
|
|
|
=head1 SYNOPSIS
|
|
|
|
my $packed = Data::MessagePack->pack($dat);
|
|
my $unpacked = Data::MessagePack->unpack($dat);
|
|
|
|
=head1 DESCRIPTION
|
|
|
|
Data::MessagePack is a binary packer for perl.
|
|
|
|
=head1 Configuration Variables
|
|
|
|
=over 4
|
|
|
|
=item $Data::MessagePack::PreferInteger
|
|
|
|
Pack the string as int when the value looks like int(EXPERIMENTAL).
|
|
|
|
=back
|
|
|
|
=head1 AUTHORS
|
|
|
|
Tokuhiro Matsuno
|
|
|
|
=head1 SEE ALSO
|
|
|
|
L<http://msgpack.sourceforge.jp/>
|
|
|