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...).
--- #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:
ABSTRACT_FROM => 'lib/Regexp/Wildcards.pm',
PL_FILES => {},
PREREQ_PM => {
- 'Test::More' => 0,
+ 'Exporter' => 0,
+ 'Test::More' => 0,
'Text::Balanced' => 0,
},
dist => {
expressions.
VERSION
- Version 0.06
+ Version 0.07
SYNOPSIS
use Regexp::Wildcards qw/wc2re/;
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
=head1 VERSION
-Version 0.06
+Version 0.07
=cut
-our $VERSION = '0.06';
+our $VERSION = '0.07';
=head1 SYNOPSIS
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
#!perl -T
+use strict;
+use warnings;
+
use Test::More tests => 1;
BEGIN {
#!perl -T
+use strict;
+use warnings;
+
use Test::More tests => 5;
require Regexp::Wildcards;
#!perl -T
+use strict;
+use warnings;
+
use Test::More tests => 10;
use Regexp::Wildcards qw/wc2re wc2re_win32/;
#!perl -T
+use strict;
+use warnings;
+
use Test::More tests => 4 * (4 + 2 + 7 + 9 + 2) * 3;
use Regexp::Wildcards qw/wc2re/;
#!perl -T
+use strict;
+use warnings;
+
use Test::More tests => 8;
use Regexp::Wildcards qw/wc2re_unix wc2re_win32/;
#!perl -T
+use strict;
+use warnings;
+
use Test::More tests => 27;
use Regexp::Wildcards qw/wc2re_jokers wc2re_sql wc2re_unix wc2re_win32/;
use strict;
use warnings;
+
use Test::More tests => 3;
sub not_in_file_ok {
#!perl
+use strict;
+use warnings;
+
use Test::More;
eval { require Test::Kwalitee; Test::Kwalitee->import() };
#!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( {
#!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();