diff --git a/.gitignore b/.gitignore index 250f8c7..93c70c9 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1 @@ -Test-Perl-Critic-1.02.tar.gz +/Test-Perl-Critic-[0-9.]*.tar.gz diff --git a/perl-Test-Perl-Critic-1.01-fixtest.patch b/perl-Test-Perl-Critic-1.01-fixtest.patch deleted file mode 100644 index 6ce99da..0000000 --- a/perl-Test-Perl-Critic-1.01-fixtest.patch +++ /dev/null @@ -1,21 +0,0 @@ -diff -up Test-Perl-Critic-1.01/lib/Test/Perl/Critic.pm.BAD Test-Perl-Critic-1.01/lib/Test/Perl/Critic.pm ---- Test-Perl-Critic-1.01/lib/Test/Perl/Critic.pm.BAD 2008-01-15 11:21:37.000000000 -0500 -+++ Test-Perl-Critic-1.01/lib/Test/Perl/Critic.pm 2008-01-15 11:22:10.000000000 -0500 -@@ -92,7 +92,7 @@ sub critic_ok { - - sub all_critic_ok { - -- my @dirs = @_ ? @_ : _starting_points(); -+ my (@dirs) = @_ ? @_ : _starting_points(); - my @files = all_code_files( @dirs ); - $TEST->plan( tests => scalar @files ); - -@@ -103,7 +103,7 @@ sub all_critic_ok { - #--------------------------------------------------------------------------- - - sub all_code_files { -- my @dirs = @_ ? @_ : _starting_points(); -+ my (@dirs) = @_ ? @_ : _starting_points(); - return Perl::Critic::Utils::all_perl_files(@dirs); - } -