]> git.vpit.fr Git - perl/modules/Regexp-Wildcards.git/commitdiff
Importing Regexp-Wildcards-0.07.tar.gz v0.07
authorVincent Pit <vince@profvince.com>
Sun, 29 Jun 2008 15:43:59 +0000 (17:43 +0200)
committerVincent Pit <vince@profvince.com>
Sun, 29 Jun 2008 15:43:59 +0000 (17:43 +0200)
15 files changed:
Changes
META.yml
Makefile.PL
README
lib/Regexp/Wildcards.pm
t/00-load.t
t/01-import.t
t/02-wc2re.t
t/10-jokers.t
t/11-commas.t
t/12-brackets.t
t/boilerplate.t
t/kwalitee.t
t/pod-coverage.t
t/pod.t

diff --git a/Changes b/Changes
index 57942a11077daeff85ccd6f43ab2613a610c2b16..9c3988818a77d1a393e366b0969ce4aeab696abc 100644 (file)
--- 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...).
index d06a47502bd987fcfed1f90a099a2fde5ecc05cb..c3a1eaaf036fc4defdef859a7e7f7f64e8e7ce61 100644 (file)
--- 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:
index 8537a6edd335bb1d3f783fc91c36b3097ce8dc6f..dd135d8b34f94ab461f681a9eb206e3a4183e0e6 100644 (file)
@@ -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 0780e9ad50822c23df7cdb81f640ba0059a94915..25042a43c2aec7a12992efb27f890700c2feb3a6 100644 (file)
--- 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, "<perl at profvince.com>"
 
+    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
index 041223b6170816be7641508a551f57f09d6df635..095666e00aa74a32c1bebd2f0531e31eca5b66dd 100644 (file)
@@ -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<Text::Buffer> has the C<convertWildcardToRegex> class method that handles joke
 
 Vincent Pit, C<< <perl at profvince.com> >>
 
+You can contact me by mail or on #perl @ FreeNode (Prof_Vince).
+
 =head1 BUGS
 
 Please report any bugs or feature requests to
index ab63ea509233dc631ba6c3a96dc8c7162921b66d..40cd748e4bf149fe95009a24489393f68ce3c106 100644 (file)
@@ -1,5 +1,8 @@
 #!perl -T
 
+use strict;
+use warnings;
+
 use Test::More tests => 1;
 
 BEGIN {
index 5c5764383adfa965e107348cb70782c27a54994d..c2d234e9ab7415916bba3228c0326380005b418f 100644 (file)
@@ -1,5 +1,8 @@
 #!perl -T
 
+use strict;
+use warnings;
+
 use Test::More tests => 5;
 
 require Regexp::Wildcards;
index c8e6c10f2c6705b8538f50f13debab12c89e5ad1..0aa383bd9c7faf8e7b8104e2f7b9e0457bb7dac9 100644 (file)
@@ -1,5 +1,8 @@
 #!perl -T
 
+use strict;
+use warnings;
+
 use Test::More tests => 10;
 
 use Regexp::Wildcards qw/wc2re wc2re_win32/;
index 0ce769e50eb7fa1e8cb1ddff5cb8beb407364671..27a041a8b7186120a376627e231ccb3fa6804c46 100644 (file)
@@ -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/;
index ba6703a2ea468eb6ec03d10fc3bfe3d1f9c2a2cc..9720a9d8bf0e891071384dbd77fbb00d31899010 100644 (file)
@@ -1,5 +1,8 @@
 #!perl -T
 
+use strict;
+use warnings;
+
 use Test::More tests => 8;
 
 use Regexp::Wildcards qw/wc2re_unix wc2re_win32/;
index a5e023f32ca8d7cf6fe5b712c9a9cb409ccbaeb4..264ff40ea43acee73d693278c4f5761a8a9b2d0a 100644 (file)
@@ -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/;
index f0b2adae1a020df0eeeb6ebb10a0920389309054..d5c22596d24c3f5a8ef8bdc8e518217deca836d7 100644 (file)
@@ -2,6 +2,7 @@
 
 use strict;
 use warnings;
+
 use Test::More tests => 3;
 
 sub not_in_file_ok {
index 1e95c3dc6897784a9bff7930462619480923e513..7775e608d046d625d33d383cd329e8197a3e5ede 100644 (file)
@@ -1,5 +1,8 @@
 #!perl
 
+use strict;
+use warnings;
+
 use Test::More;
 
 eval { require Test::Kwalitee; Test::Kwalitee->import() };
index e62de6105191dd7aa54b762acb5704abaf53b1aa..3ee0ab0516e49420e959d3d12cfe3155654e6ede 100644 (file)
@@ -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 976d7cdfb2a829b1383ffe12570180e25c14668c..f1e1d3e375d2b802ad35abd32ba55f7f5eddacae 100644 (file)
--- 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();