]> git.vpit.fr Git - perl/modules/Sub-Prototype-Util.git/commitdiff
Importing Sub-Prototype-Util-0.02.tar.gz v0.02
authorVincent Pit <vince@profvince.com>
Sun, 29 Jun 2008 15:52:04 +0000 (17:52 +0200)
committerVincent Pit <vince@profvince.com>
Sun, 29 Jun 2008 15:52:04 +0000 (17:52 +0200)
Changes
META.yml
Makefile.PL
README
lib/Sub/Prototype/Util.pm

diff --git a/Changes b/Changes
index 7f1a6251356ff247f2ef301177b85d44dfaf1647..ea7744ea6192aaf6044ee043c0f7a6e4deeae928 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,9 @@
 Revision history for Sub-Prototype-Util
 
+0.02    2008-04-06 16:40 UTC
+        + Fix : Missing LICENSE in Makefile.PL.
+        + Fix : Typos in POD.
+
 0.01    2008-04-06 14:00 UTC
         First version, released on an unsuspecting world.
 
index fae446c18de1e9ca978e9693b755b5e2584dccd0..def74582c1303baa6cb828b4549cf39dd6826587 100644 (file)
--- a/META.yml
+++ b/META.yml
@@ -1,8 +1,8 @@
 --- #YAML:1.0
 name:                Sub-Prototype-Util
-version:             0.01
-abstract:            Prototypes-related utility routines.
-license:             ~
+version:             0.02
+abstract:            Prototype-related utility routines.
+license:             perl
 author:              
     - Vincent Pit <perl@profvince.com>
 generated_by:        ExtUtils::MakeMaker version 6.42
index 9decaeb912c95c4faca4ec9a14f1c8be78161245..0874b2c94787f6faab15a1e26f2653cd0eb68eb8 100644 (file)
@@ -21,6 +21,7 @@ sub build_req {
 WriteMakefile(
     NAME          => 'Sub::Prototype::Util',
     AUTHOR        => 'Vincent Pit <perl@profvince.com>',
+    LICENSE       => 'perl',
     VERSION_FROM  => 'lib/Sub/Prototype/Util.pm',
     ABSTRACT_FROM => 'lib/Sub/Prototype/Util.pm',
     PL_FILES      => {},
diff --git a/README b/README
index 20b9d5904e2d17b8ef5ae8a766d2e0f430cc3a30..70525e99e8dfd776fd6a6253fba461417aa5ee6d 100644 (file)
--- a/README
+++ b/README
@@ -1,8 +1,8 @@
 NAME
-    Sub::Prototype::Util - Prototypes-related utility routines.
+    Sub::Prototype::Util - Prototype-related utility routines.
 
 VERSION
-    Version 0.01
+    Version 0.02
 
 SYNOPSIS
         use Sub::Prototype::Util qw/flatten recall/;
@@ -16,7 +16,7 @@ SYNOPSIS
 DESCRIPTION
     Prototypes are evil, but sometimes you just have to bear with them,
     especially when messing with core functions. This module provides
-    several utilities aimed at faciliting "overloading" of prototyped
+    several utilities aimed at facilitating "overloading" of prototyped
     functions.
 
     They all handle 5.10's "_" prototype.
@@ -42,10 +42,10 @@ FUNCTIONS
 
 EXPORT
     The functions "flatten" and "recall" are only exported on request,
-    either by providing their name or by the ':consts' and ':all' tags.
+    either by providing their name or by the ':funcs' and ':all' tags.
 
 DEPENDENCIES
-    Carp (core module since perl 5), Scalar::Util (since 5.7.3).
+    Carp, Exporter (core modules since perl 5), Scalar::Util (since 5.7.3).
 
 AUTHOR
     Vincent Pit, "<perl at profvince.com>", <http://www.profvince.com>.
index f090f87be84c8460f2bc030e535d097b1868248e..661d03d71cb1354f1c13f28a15f6e08c71fa2e37 100644 (file)
@@ -8,15 +8,15 @@ use Scalar::Util qw/reftype/;
 
 =head1 NAME
 
-Sub::Prototype::Util - Prototypes-related utility routines.
+Sub::Prototype::Util - Prototype-related utility routines.
 
 =head1 VERSION
 
-Version 0.01
+Version 0.02
 
 =cut
 
-our $VERSION = '0.01';
+our $VERSION = '0.02';
 
 =head1 SYNOPSIS
 
@@ -30,7 +30,7 @@ our $VERSION = '0.01';
 
 =head1 DESCRIPTION
 
-Prototypes are evil, but sometimes you just have to bear with them, especially when messing with core functions. This module provides several utilities aimed at faciliting "overloading" of prototyped functions.
+Prototypes are evil, but sometimes you just have to bear with them, especially when messing with core functions. This module provides several utilities aimed at facilitating "overloading" of prototyped functions.
 
 They all handle C<5.10>'s C<_> prototype.
 
@@ -134,7 +134,7 @@ sub recall {
 
 =head1 EXPORT
 
-The functions L</flatten> and L</recall> are only exported on request, either by providing their name or by the C<':consts'> and C<':all'> tags.
+The functions L</flatten> and L</recall> are only exported on request, either by providing their name or by the C<':funcs'> and C<':all'> tags.
 
 =cut
 
@@ -149,7 +149,7 @@ $EXPORT_TAGS{'all'} = [ @EXPORT_OK ];
 
 =head1 DEPENDENCIES
 
-L<Carp> (core module since perl 5), L<Scalar::Util> (since 5.7.3).
+L<Carp>, L<Exporter> (core modules since perl 5), L<Scalar::Util> (since 5.7.3).
 
 =head1 AUTHOR