From: Nick Gerakines Date: Tue, 23 Dec 2008 18:23:07 +0000 (-0800) Subject: Applying changes from bobtfish, bumping to Test::NoTabs-0.4 X-Git-Tag: Test-NoTabs-0.4^0 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=refs%2Ftags%2FTest-NoTabs-0.4;p=catagits%2FTest-NoTabs.git Applying changes from bobtfish, bumping to Test::NoTabs-0.4 --- diff --git a/Changes b/Changes index bc07902..085c858 100644 --- a/Changes +++ b/Changes @@ -9,3 +9,7 @@ Revision history for Test-NoTabs 0.3 2006-08-26 - Added missing dependancy (Test::Group) + +0.4 2008-12-14 + - Change to Module::Install so that we install + cleanly on a fresh perl 5.8 diff --git a/MANIFEST b/MANIFEST index 507b365..fc178c5 100644 --- a/MANIFEST +++ b/MANIFEST @@ -1,15 +1,19 @@ -Build.PL -<<<<<<< HEAD:MANIFEST -======= -Makefile.PL ->>>>>>> trunk:MANIFEST Changes -MANIFEST +inc/Module/Install.pm +inc/Module/Install/Base.pm +inc/Module/Install/Can.pm +inc/Module/Install/Fetch.pm +inc/Module/Install/Makefile.pm +inc/Module/Install/Metadata.pm +inc/Module/Install/Win32.pm +inc/Module/Install/WriteAll.pm +lib/Test/NoTabs.pm +Makefile.PL +MANIFEST This list of files META.yml README -lib/Test/NoTabs.pm t/00-load.t t/04-pod.t t/05-pod-coverage.t t/11-all.t -t/12-fail.t \ No newline at end of file +t/12-fail.t diff --git a/META.yml b/META.yml index cb1d67c..0980c9a 100644 --- a/META.yml +++ b/META.yml @@ -1,8 +1,26 @@ ---- #YAML:1.0 -name: Test-NoTabs -version: 0.3 +--- +abstract: 'Check the presence of tabs in your project' author: - - Nick Gerakines -abstract: Check the presence of tabs in your project + - 'Nick Gerakines ' +distribution_type: module +generated_by: 'Module::Install version 0.77' license: perl -generated_by: Module::Build version 0.2612, without YAML.pm +meta-spec: + url: http://module-build.sourceforge.net/META-spec-v1.4.html + version: 1.4 +module_name: Test::NoTabs +name: Test-NoTabs +no_index: + directory: + - inc + - t +requires: + File::Find: 0 + File::Spec: 0 + FindBin: 0 + Test::Builder: 0 + Test::Group: 0 + Test::More: 0 +resources: + license: http://dev.perl.org/licenses/ +version: 0.4 diff --git a/Makefile.PL b/Makefile.PL index 7424476..6ba3a8a 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,3 +1,14 @@ -use Module::Build::Compat; -Module::Build::Compat->run_build_pl(args => \@ARGV); -Module::Build::Compat->write_makefile(); \ No newline at end of file +use inc::Module::Install; +name 'Test-NoTabs', +license 'perl', +author 'Nick Gerakines ', +all_from 'lib/Test/NoTabs.pm', +requires 'Test::More'; +requires 'Test::Builder'; +requires 'File::Spec'; +requires 'FindBin'; +requires 'File::Find'; +requires 'Test::Group'; + +WriteAll; + diff --git a/lib/Test/NoTabs.pm b/lib/Test/NoTabs.pm index e8274ec..bebb9d7 100644 --- a/lib/Test/NoTabs.pm +++ b/lib/Test/NoTabs.pm @@ -10,7 +10,7 @@ use File::Find; use vars qw( $VERSION $PERL $UNTAINT_PATTERN $PERL_PATTERN); -$VERSION = '0.3.1'; +$VERSION = '0.4'; $PERL = $^X || 'perl'; $UNTAINT_PATTERN = qr|^([-+@\w./:\\]+)$|; diff --git a/t/11-all.t b/t/11-all.t index ef8bd2d..5ab66cb 100644 --- a/t/11-all.t +++ b/t/11-all.t @@ -1,10 +1,11 @@ use strict; use Test::NoTabs; +use FindBin qw/$Bin/; use File::Temp qw( tempdir tempfile ); -all_perl_files_ok(); +all_perl_files_ok("$Bin/../lib"); notabs_ok( $0, "$0 is tab free" );