Applying changes from bobtfish, bumping to Test::NoTabs-0.4 Test-NoTabs-0.4
Nick Gerakines [Tue, 23 Dec 2008 18:23:07 +0000 (10:23 -0800)]
Changes
MANIFEST
META.yml
Makefile.PL
lib/Test/NoTabs.pm
t/11-all.t

diff --git a/Changes b/Changes
index bc07902..085c858 100644 (file)
--- 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
index 507b365..fc178c5 100644 (file)
--- 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
index cb1d67c..0980c9a 100644 (file)
--- 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 <nick@socklabs.com>
-abstract: Check the presence of tabs in your project
+  - 'Nick Gerakines <nick@socklabs.com>'
+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
index 7424476..6ba3a8a 100644 (file)
@@ -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 <nick@socklabs.com>',
+all_from 'lib/Test/NoTabs.pm',
+requires 'Test::More';
+requires 'Test::Builder';
+requires 'File::Spec';
+requires 'FindBin';
+requires 'File::Find';
+requires 'Test::Group';
+
+WriteAll;
+
index e8274ec..bebb9d7 100644 (file)
@@ -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./:\\]+)$|;
index ef8bd2d..5ab66cb 100644 (file)
@@ -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" );