From: Vincent Pit Date: Tue, 20 Aug 2013 19:48:53 +0000 (-0300) Subject: This is 0.07 X-Git-Tag: v0.07^0 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FBit-MorseSignals.git;a=commitdiff_plain;h=7def52117700e2492a107867e95a7ccec38b2df6 This is 0.07 --- diff --git a/Changes b/Changes index 9780fe2..2ded9c5 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,9 @@ Revision history for Bit-MorseSignals +0.07 2013-08-20 19:50 UTC + + Upd : Package metadata overhaul. + + Tst : The Kwalitee test has been removed. + 0.06 2008-03-20 19:45 UTC + Fix : Read the datatype bits in the right order (lowest weight bit coming first). diff --git a/MANIFEST b/MANIFEST index 4c5f75f..1fa5d54 100644 --- a/MANIFEST +++ b/MANIFEST @@ -1,5 +1,6 @@ Changes MANIFEST +META.json META.yml Makefile.PL README diff --git a/META.json b/META.json new file mode 100644 index 0000000..4b18942 --- /dev/null +++ b/META.json @@ -0,0 +1,65 @@ +{ + "abstract" : "The MorseSignals protocol.", + "author" : [ + "Vincent Pit " + ], + "dynamic_config" : 0, + "generated_by" : "ExtUtils::MakeMaker version 6.72, CPAN::Meta::Converter version 2.132140", + "license" : [ + "perl_5" + ], + "meta-spec" : { + "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec", + "version" : "2" + }, + "name" : "Bit-MorseSignals", + "no_index" : { + "directory" : [ + "t", + "inc" + ] + }, + "prereqs" : { + "build" : { + "requires" : { + "Carp" : "0", + "Encode" : "0", + "Exporter" : "0", + "ExtUtils::MakeMaker" : "0", + "Storable" : "0", + "Test::More" : "0", + "base" : "0", + "utf8" : "0" + } + }, + "configure" : { + "requires" : { + "ExtUtils::MakeMaker" : "0" + } + }, + "runtime" : { + "requires" : { + "Carp" : "0", + "Encode" : "0", + "Exporter" : "0", + "Storable" : "0", + "base" : "0", + "perl" : "5.008" + } + } + }, + "release_status" : "stable", + "resources" : { + "bugtracker" : { + "web" : "http://rt.cpan.org/Dist/Display.html?Name=Bit-MorseSignals" + }, + "homepage" : "http://search.cpan.org/dist/Bit-MorseSignals/", + "license" : [ + "http://dev.perl.org/licenses/" + ], + "repository" : { + "url" : "http://git.profvince.com/?p=perl%2Fmodules%2FBit-MorseSignals.git" + } + }, + "version" : "0.07" +} diff --git a/META.yml b/META.yml index 290ecc2..cc9ac2d 100644 --- a/META.yml +++ b/META.yml @@ -1,21 +1,39 @@ ---- #YAML:1.0 -name: Bit-MorseSignals -version: 0.06 -abstract: The MorseSignals protocol. -license: perl -author: - - Vincent Pit -generated_by: ExtUtils::MakeMaker version 6.42 -distribution_type: module -requires: - Carp: 0 - Encode: 0 - Exporter: 0 - Storable: 0 -meta-spec: - url: http://module-build.sourceforge.net/META-spec-v1.3.html - version: 1.3 +--- +abstract: 'The MorseSignals protocol.' +author: + - 'Vincent Pit ' build_requires: - ExtUtils::MakeMaker: 0 - Test::More: 0 - utf8: 0 + Carp: 0 + Encode: 0 + Exporter: 0 + ExtUtils::MakeMaker: 0 + Storable: 0 + Test::More: 0 + base: 0 + utf8: 0 +configure_requires: + ExtUtils::MakeMaker: 0 +dynamic_config: 0 +generated_by: 'ExtUtils::MakeMaker version 6.72, CPAN::Meta::Converter version 2.132140' +license: perl +meta-spec: + url: http://module-build.sourceforge.net/META-spec-v1.4.html + version: 1.4 +name: Bit-MorseSignals +no_index: + directory: + - t + - inc +requires: + Carp: 0 + Encode: 0 + Exporter: 0 + Storable: 0 + base: 0 + perl: 5.008 +resources: + bugtracker: http://rt.cpan.org/Dist/Display.html?Name=Bit-MorseSignals + homepage: http://search.cpan.org/dist/Bit-MorseSignals/ + license: http://dev.perl.org/licenses/ + repository: http://git.profvince.com/?p=perl%2Fmodules%2FBit-MorseSignals.git +version: 0.07 diff --git a/README b/README index 080c4a1..35a553a 100644 --- a/README +++ b/README @@ -2,14 +2,14 @@ NAME Bit::MorseSignals - The MorseSignals protocol. VERSION - Version 0.06 + Version 0.07 SYNOPSIS use Bit::MorseSignals::Emitter; use Bit::MorseSignals::Receiver; - my $deuce = new Bit::MorseSignals::Emitter; - my $pants = new Bit::MorseSignals::Receiver done => sub { print $_[1], "\n" }; + my $deuce = Bit::MorseSignals::Emitter->new; + my $pants = Bit::MorseSignals::Receiver->new(done => sub { print $_[1], "\n" }); $deuce->post('HLAGH') for 1 .. 3; $pants->push while defined ($_ = $deuce->pop); @@ -94,8 +94,7 @@ SEE ALSO AUTHOR Vincent Pit, "", . - You can contact me by mail or on #perl @ FreeNode (vincent or - Prof_Vince). + You can contact me by mail or on "irc.perl.org" (vincent). BUGS Please report any bugs or feature requests to "bug-bit-morsesignals at diff --git a/lib/Bit/MorseSignals.pm b/lib/Bit/MorseSignals.pm index 5866e6c..f6475dc 100644 --- a/lib/Bit/MorseSignals.pm +++ b/lib/Bit/MorseSignals.pm @@ -9,11 +9,11 @@ Bit::MorseSignals - The MorseSignals protocol. =head1 VERSION -Version 0.06 +Version 0.07 =cut -our $VERSION = '0.06'; +our $VERSION = '0.07'; =head1 SYNOPSIS diff --git a/lib/Bit/MorseSignals/Emitter.pm b/lib/Bit/MorseSignals/Emitter.pm index 18f3940..eee1d72 100644 --- a/lib/Bit/MorseSignals/Emitter.pm +++ b/lib/Bit/MorseSignals/Emitter.pm @@ -15,11 +15,11 @@ Bit::MorseSignals::Emitter - Base class for Bit::MorseSignals emitters. =head1 VERSION -Version 0.06 +Version 0.07 =cut -our $VERSION = '0.06'; +our $VERSION = '0.07'; =head1 SYNOPSIS diff --git a/lib/Bit/MorseSignals/Receiver.pm b/lib/Bit/MorseSignals/Receiver.pm index 1171583..25190ae 100644 --- a/lib/Bit/MorseSignals/Receiver.pm +++ b/lib/Bit/MorseSignals/Receiver.pm @@ -15,11 +15,11 @@ Bit::MorseSignals::Receiver - Base class for Bit::MorseSignals receivers. =head1 VERSION -Version 0.06 +Version 0.07 =cut -our $VERSION = '0.06'; +our $VERSION = '0.07'; =head1 SYNOPSIS