ext/Text-Balanced/t/07_exttag.t See if Text::Balanced works
ext/Text-Balanced/t/08_extvar.t See if Text::Balanced works
ext/Text-Balanced/t/09_gentag.t See if Text::Balanced works
+ext/Text-ParseWords/ParseWords.pm Perl module to split words on arbitrary delimiter
+ext/Text-ParseWords/t/ParseWords.t See if Text::ParseWords works
+ext/Text-ParseWords/t/taint.t See if Text::ParseWords works with tainting
ext/Text-Soundex/Changes Changelog for Text::Soundex
ext/Text-Soundex/README README for Text::Soundex
ext/Text-Soundex/Soundex.pm Text::Soundex extension Perl module
lib/Test/Tutorial.pod A tutorial on writing tests
lib/Text/Abbrev.pm An abbreviation table builder
lib/Text/Abbrev.t Test Text::Abbrev
-lib/Text/ParseWords.pm Perl module to split words on arbitrary delimiter
-lib/Text/ParseWords.t See if Text::ParseWords works
-lib/Text/ParseWords/taint.t See if Text::ParseWords works with tainting
lib/Thread.pm Thread extensions frontend
lib/Thread.t Thread extensions frontend tests
lib/Tie/Array.pm Base class for tied arrays
{
'MAINTAINER' => 'chorny',
'DISTRIBUTION' => 'CHORNY/Text-ParseWords-3.27.zip',
- 'FILES' => q[lib/Text/ParseWords{.pm,.t,}],
+ 'FILES' => q[ext/Text-ParseWords],
'EXCLUDED' => [ qw( t/pod.t ) ],
- 'MAP' => { '' => 'lib/Text/',
- 't/ParseWords.t' => 'lib/Text/ParseWords.t',
- 't/taint.t' => 'lib/Text/ParseWords/taint.t',
- },
'CPAN' => 1,
'UPSTREAM' => undef,
},
/Term-UI/Makefile.PL
/Test-Harness/Makefile.PL
/Text-Balanced/Makefile.PL
+/Text-ParseWords/Makefile.PL
/Text-Soundex/Makefile.PL
/Text-Tabs/Makefile.PL
/Thread-Queue/Makefile.PL
#!./perl\r
\r
-BEGIN {\r
- if( $ENV{PERL_CORE} ) {\r
- chdir 't' if -d 't';\r
- @INC = '../lib';\r
- }\r
-}\r
-\r
use warnings;\r
use Text::ParseWords;\r
use Test::More tests => 27;\r
/Term/UI/History.pm
/Term/UI.pm
/Text/Balanced.pm
+/Text/ParseWords.pm
/Text/Soundex.pm
/Text/Tabs.pm
/Text/Wrap.pm
# After which, all nonxs modules are in lib, which was always sufficient to
# allow miniperl to build everything else.
-my @toolchain = qw(ext/constant/lib ext/ExtUtils-Command/lib);
+my @toolchain = qw(ext/constant/lib ext/ExtUtils-Command/lib
+ ext/Text-ParseWords);
# This script acts as a simple interface for building extensions.