From: Vincent Pit Date: Sun, 29 Jun 2008 15:43:59 +0000 (+0200) Subject: Importing Regexp-Wildcards-0.07.tar.gz X-Git-Tag: v0.07^0 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FRegexp-Wildcards.git;a=commitdiff_plain;h=caa5f3c462570ffc1eb2c4222266978d1c925c3b Importing Regexp-Wildcards-0.07.tar.gz --- diff --git a/Changes b/Changes index 57942a1..9c39888 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,9 @@ Revision history for Regexp-Wildcards +0.07 2007-08-28 12:35 UTC + + Fix : Tests are now strict. + + Fix : Complete dependencies. + 0.06 2007-06-26 12:40 UTC + Add : SQL '%' and '_' wildcards (with corresponding pod & tests). + Fix : Typos in pod (looks like this will never end...). diff --git a/META.yml b/META.yml index d06a475..c3a1eaa 100644 --- a/META.yml +++ b/META.yml @@ -1,11 +1,12 @@ --- #YAML:1.0 name: Regexp-Wildcards -version: 0.06 +version: 0.07 abstract: Converts wildcard expressions to Perl regular expressions. license: perl -generated_by: ExtUtils::MakeMaker version 6.32 +generated_by: ExtUtils::MakeMaker version 6.36 distribution_type: module requires: + Exporter: 0 Test::More: 0 Text::Balanced: 0 meta-spec: diff --git a/Makefile.PL b/Makefile.PL index 8537a6e..dd135d8 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -10,7 +10,8 @@ WriteMakefile( ABSTRACT_FROM => 'lib/Regexp/Wildcards.pm', PL_FILES => {}, PREREQ_PM => { - 'Test::More' => 0, + 'Exporter' => 0, + 'Test::More' => 0, 'Text::Balanced' => 0, }, dist => { diff --git a/README b/README index 0780e9a..25042a4 100644 --- a/README +++ b/README @@ -3,7 +3,7 @@ NAME expressions. VERSION - Version 0.06 + Version 0.07 SYNOPSIS use Regexp::Wildcards qw/wc2re/; @@ -180,6 +180,8 @@ SEE ALSO AUTHOR Vincent Pit, "" + You can contact me by mail or on #perl @ FreeNode (Prof_Vince). + BUGS Please report any bugs or feature requests to "bug-regexp-wildcards at rt.cpan.org", or through the web interface at diff --git a/lib/Regexp/Wildcards.pm b/lib/Regexp/Wildcards.pm index 041223b..095666e 100644 --- a/lib/Regexp/Wildcards.pm +++ b/lib/Regexp/Wildcards.pm @@ -11,11 +11,11 @@ Regexp::Wildcards - Converts wildcard expressions to Perl regular expressions. =head1 VERSION -Version 0.06 +Version 0.07 =cut -our $VERSION = '0.06'; +our $VERSION = '0.07'; =head1 SYNOPSIS @@ -262,6 +262,8 @@ L has the C class method that handles joke Vincent Pit, C<< >> +You can contact me by mail or on #perl @ FreeNode (Prof_Vince). + =head1 BUGS Please report any bugs or feature requests to diff --git a/t/00-load.t b/t/00-load.t index ab63ea5..40cd748 100644 --- a/t/00-load.t +++ b/t/00-load.t @@ -1,5 +1,8 @@ #!perl -T +use strict; +use warnings; + use Test::More tests => 1; BEGIN { diff --git a/t/01-import.t b/t/01-import.t index 5c57643..c2d234e 100644 --- a/t/01-import.t +++ b/t/01-import.t @@ -1,5 +1,8 @@ #!perl -T +use strict; +use warnings; + use Test::More tests => 5; require Regexp::Wildcards; diff --git a/t/02-wc2re.t b/t/02-wc2re.t index c8e6c10..0aa383b 100644 --- a/t/02-wc2re.t +++ b/t/02-wc2re.t @@ -1,5 +1,8 @@ #!perl -T +use strict; +use warnings; + use Test::More tests => 10; use Regexp::Wildcards qw/wc2re wc2re_win32/; diff --git a/t/10-jokers.t b/t/10-jokers.t index 0ce769e..27a041a 100644 --- a/t/10-jokers.t +++ b/t/10-jokers.t @@ -1,5 +1,8 @@ #!perl -T +use strict; +use warnings; + use Test::More tests => 4 * (4 + 2 + 7 + 9 + 2) * 3; use Regexp::Wildcards qw/wc2re/; diff --git a/t/11-commas.t b/t/11-commas.t index ba6703a..9720a9d 100644 --- a/t/11-commas.t +++ b/t/11-commas.t @@ -1,5 +1,8 @@ #!perl -T +use strict; +use warnings; + use Test::More tests => 8; use Regexp::Wildcards qw/wc2re_unix wc2re_win32/; diff --git a/t/12-brackets.t b/t/12-brackets.t index a5e023f..264ff40 100644 --- a/t/12-brackets.t +++ b/t/12-brackets.t @@ -1,5 +1,8 @@ #!perl -T +use strict; +use warnings; + use Test::More tests => 27; use Regexp::Wildcards qw/wc2re_jokers wc2re_sql wc2re_unix wc2re_win32/; diff --git a/t/boilerplate.t b/t/boilerplate.t index f0b2ada..d5c2259 100644 --- a/t/boilerplate.t +++ b/t/boilerplate.t @@ -2,6 +2,7 @@ use strict; use warnings; + use Test::More tests => 3; sub not_in_file_ok { diff --git a/t/kwalitee.t b/t/kwalitee.t index 1e95c3d..7775e60 100644 --- a/t/kwalitee.t +++ b/t/kwalitee.t @@ -1,5 +1,8 @@ #!perl +use strict; +use warnings; + use Test::More; eval { require Test::Kwalitee; Test::Kwalitee->import() }; diff --git a/t/pod-coverage.t b/t/pod-coverage.t index e62de61..3ee0ab0 100644 --- a/t/pod-coverage.t +++ b/t/pod-coverage.t @@ -1,6 +1,10 @@ #!perl -T +use strict; +use warnings; + use Test::More; + eval "use Test::Pod::Coverage 1.04"; plan skip_all => "Test::Pod::Coverage 1.04 required for testing POD coverage" if $@; all_pod_coverage_ok( { diff --git a/t/pod.t b/t/pod.t index 976d7cd..f1e1d3e 100644 --- a/t/pod.t +++ b/t/pod.t @@ -1,6 +1,10 @@ #!perl -T +use strict; +use warnings; + use Test::More; + eval "use Test::Pod 1.14"; plan skip_all => "Test::Pod 1.14 required for testing POD" if $@; all_pod_files_ok();