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).
Changes
MANIFEST
+META.json
META.yml
Makefile.PL
README
--- /dev/null
+{
+ "abstract" : "The MorseSignals protocol.",
+ "author" : [
+ "Vincent Pit <perl@profvince.com>"
+ ],
+ "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"
+}
---- #YAML:1.0
-name: Bit-MorseSignals
-version: 0.06
-abstract: The MorseSignals protocol.
-license: perl
-author:
- - Vincent Pit <perl@profvince.com>
-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 <perl@profvince.com>'
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
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);
AUTHOR
Vincent Pit, "<perl at profvince.com>", <http://www.profvince.com>.
- 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
=head1 VERSION
-Version 0.06
+Version 0.07
=cut
-our $VERSION = '0.06';
+our $VERSION = '0.07';
=head1 SYNOPSIS
=head1 VERSION
-Version 0.06
+Version 0.07
=cut
-our $VERSION = '0.06';
+our $VERSION = '0.07';
=head1 SYNOPSIS
=head1 VERSION
-Version 0.06
+Version 0.07
=cut
-our $VERSION = '0.06';
+our $VERSION = '0.07';
=head1 SYNOPSIS