From: Vincent Pit Date: Sun, 29 Jun 2008 15:52:04 +0000 (+0200) Subject: Importing Sub-Prototype-Util-0.02.tar.gz X-Git-Tag: v0.02^0 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FSub-Prototype-Util.git;a=commitdiff_plain;h=5e934b02978f8e2a411e8aba352fc6465c0e3aba Importing Sub-Prototype-Util-0.02.tar.gz --- diff --git a/Changes b/Changes index 7f1a625..ea7744e 100644 --- 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. diff --git a/META.yml b/META.yml index fae446c..def7458 100644 --- 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 generated_by: ExtUtils::MakeMaker version 6.42 diff --git a/Makefile.PL b/Makefile.PL index 9decaeb..0874b2c 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -21,6 +21,7 @@ sub build_req { WriteMakefile( NAME => 'Sub::Prototype::Util', AUTHOR => 'Vincent Pit ', + 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 20b9d59..70525e9 100644 --- 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, "", . diff --git a/lib/Sub/Prototype/Util.pm b/lib/Sub/Prototype/Util.pm index f090f87..661d03d 100644 --- a/lib/Sub/Prototype/Util.pm +++ b/lib/Sub/Prototype/Util.pm @@ -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 and L are only exported on request, either by providing their name or by the C<':consts'> and C<':all'> tags. +The functions L and L 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 (core module since perl 5), L (since 5.7.3). +L, L (core modules since perl 5), L (since 5.7.3). =head1 AUTHOR