Unfark dist 0.04
Ash Berlin [Thu, 5 Mar 2009 23:03:50 +0000 (23:03 +0000)]
Changes
MANIFEST.SKIP
Makefile.PL
lib/Test/WWW/Selenium/Catalyst.pm
t/boilerplate.t [deleted file]

diff --git a/Changes b/Changes
index 49cd403..f410aae 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,6 +1,9 @@
 Revision history for Test-WWW-Selenium-Catalyst
 
-0.03
+0.04    4 Marh 2009
+        Un-fark the dist so that the thing installs
+
+0.03    4 March 2009
         Allow a bit more configurability in selenium invocation and app
         location
 
index 47fdbb9..30dfa18 100644 (file)
@@ -1,10 +1,35 @@
-^\.git
+# Avoid version control files.
+\bRCS\b
+\bCVS\b
+,v$
+\B\.svn\b
 
-\..*?\.swp$
+# Avoid Makemaker generated and utility files.
+\bMakefile$
+\bblib
+\bMakeMaker-\d
+\bpm_to_blib$
+\bblibdirs$
+^MANIFEST\.SKIP$
 
-^blib/
-^Makefile$
-\.bak$
+# Avoid Module::Build generated and utility files.
+\bBuild$
+\b_build
+
+# Avoid temp and backup files.
+~$
+\.tmp$
 \.old$
-^Test-WWW-Selenium-Catalyst.*
+\.bak$
+\.sw[op]$
+\#$
+\b\.#
+\.DS_Store$
 
+
+# No tarballs!
+\.gz$
+\.tar$
+
+svn.authors
+^\.git
index 5801f3a..be8095f 100644 (file)
@@ -2,19 +2,17 @@ use strict;
 use warnings;
 use inc::Module::Install;
 
-name('Test-WWW-Selenium-Catalyst');
-author('Jonathan Rockway <jrockway@cpan.org>');
-version_from('lib/Test/WWW/Selenium/Catalyst.pm');
-abstract_from('lib/Test/WWW/Selenium/Catalyst.pm');
-license('Perl');
-include('ExtUtils::AutoInstall');
+name          'Test-WWW-Selenium-Catalyst';
+perl_version  '5.008000';
+all_from      'lib/Test/WWW/Selenium/Catalyst.pm';
+license       'Perl';
 requires(
         'Alien::SeleniumRC' => 0,
         'Catalyst::Runtime' => 5.7001,
         'Test::WWW::Selenium' => 0,
         'Test::More' => 0,
         'Catalyst::Utils' => 0,
-       );
+);
 
 # Old vers of CPAN dont set the env var. safer to assume we are running than
 # ask about deps twice
index 96807ff..fa177bd 100644 (file)
@@ -24,7 +24,7 @@ Test::WWW::Selenium::Catalyst - Test your Catalyst application with Selenium
 
 =cut
 
-our $VERSION = '0.03';
+our $VERSION = '0.04';
 
 =head1 DEVELOPERISH RELEASE
 
diff --git a/t/boilerplate.t b/t/boilerplate.t
deleted file mode 100644 (file)
index 40d59c1..0000000
+++ /dev/null
@@ -1,48 +0,0 @@
-#!perl -T
-
-use strict;
-use warnings;
-use Test::More tests => 3;
-
-sub not_in_file_ok {
-    my ($filename, %regex) = @_;
-    open my $fh, "<", $filename
-        or die "couldn't open $filename for reading: $!";
-
-    my %violated;
-
-    while (my $line = <$fh>) {
-        while (my ($desc, $regex) = each %regex) {
-            if ($line =~ $regex) {
-                push @{$violated{$desc}||=[]}, $.;
-            }
-        }
-    }
-
-    if (%violated) {
-        fail("$filename contains boilerplate text");
-        diag "$_ appears on lines @{$violated{$_}}" for keys %violated;
-    } else {
-        pass("$filename contains no boilerplate text");
-    }
-}
-
-not_in_file_ok(README =>
-    "The README is used..."       => qr/The README is used/,
-    "'version information here'"  => qr/to provide version information/,
-);
-
-not_in_file_ok(Changes =>
-    "placeholder date/time"       => qr(Date/time)
-);
-
-sub module_boilerplate_ok {
-    my ($module) = @_;
-    not_in_file_ok($module =>
-        'the great new $MODULENAME'   => qr/ - The great new /,
-        'boilerplate description'     => qr/Quick summary of what the module/,
-        'stub function definition'    => qr/function[12]/,
-    );
-}
-
-module_boilerplate_ok('lib/Test/WWW/Selenium/Catalyst.pm');