]> git.vpit.fr Git - perl/modules/Bit-MorseSignals.git/commitdiff
This is 0.07 v0.07
authorVincent Pit <vince@profvince.com>
Tue, 20 Aug 2013 19:48:53 +0000 (16:48 -0300)
committerVincent Pit <vince@profvince.com>
Tue, 20 Aug 2013 19:48:53 +0000 (16:48 -0300)
Changes
MANIFEST
META.json [new file with mode: 0644]
META.yml
README
lib/Bit/MorseSignals.pm
lib/Bit/MorseSignals/Emitter.pm
lib/Bit/MorseSignals/Receiver.pm

diff --git a/Changes b/Changes
index 9780fe2ec46514999ef8163f54a9461e04e26f25..2ded9c50d885d4cb9b46acae13b2d51076ab6ad2 100644 (file)
--- 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).
index 4c5f75fc1fecc434c10aa26cf2d7f84e055a6326..1fa5d5490c54ada208b3f5f759b441bd025c4a4b 100644 (file)
--- 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 (file)
index 0000000..4b18942
--- /dev/null
+++ b/META.json
@@ -0,0 +1,65 @@
+{
+   "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"
+}
index 290ecc2bdd6f312a940d2cf1636a5ed65ccb8492..cc9ac2d388db388c2dd49acb1182275bb1086a3d 100644 (file)
--- 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 <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
diff --git a/README b/README
index 080c4a106ba2e1661c60c5afe35d7b5f57a6e3b4..35a553af767337152a7eb56066adf2a94c47c268 100644 (file)
--- 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, "<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
index 5866e6cbcd93a93e267cc5e90b633f9fdd559670..f6475dc2dbff6ed0210420d8adb542890db8185b 100644 (file)
@@ -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
 
index 18f3940d77a8743ee10b35250d2fbeebe4ef08b5..eee1d7270fd222db1dad539de9ca4428c68c9f1d 100644 (file)
@@ -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
 
index 1171583a4db50852c0d82104e3b852bbba77ba2f..25190aed26b050c7bb35075de59a5bd44a4273d2 100644 (file)
@@ -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