Remove META.yml and MANIFEST, both of which should be auto generated
Tomas Doran [Tue, 23 Dec 2008 18:43:28 +0000 (18:43 +0000)]
Changes
MANIFEST [deleted file]
META.yml [deleted file]
lib/Test/NoTabs.pm

diff --git a/Changes b/Changes
index 085c858..fe5afe4 100644 (file)
--- a/Changes
+++ b/Changes
@@ -13,3 +13,8 @@ Revision history for Test-NoTabs
 0.4  2008-12-14
      - Change to Module::Install so that we install 
        cleanly on a fresh perl 5.8
+
+0.5
+     - Change to remove warnings in newer versions of
+       Test::Builder (Florian Ragwitz)
+
diff --git a/MANIFEST b/MANIFEST
deleted file mode 100644 (file)
index fc178c5..0000000
--- a/MANIFEST
+++ /dev/null
@@ -1,19 +0,0 @@
-Changes
-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
-t/00-load.t
-t/04-pod.t
-t/05-pod-coverage.t
-t/11-all.t
-t/12-fail.t
diff --git a/META.yml b/META.yml
deleted file mode 100644 (file)
index 0980c9a..0000000
--- a/META.yml
+++ /dev/null
@@ -1,26 +0,0 @@
----
-abstract: 'Check the presence of tabs in your project'
-author:
-  - 'Nick Gerakines <nick@socklabs.com>'
-distribution_type: module
-generated_by: 'Module::Install version 0.77'
-license: perl
-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 28069ee..6f05be0 100644 (file)
@@ -10,7 +10,7 @@ use File::Find;
 
 use vars qw( $VERSION $PERL $UNTAINT_PATTERN $PERL_PATTERN);
 
-$VERSION = '0.4';
+$VERSION = '0.5';
 
 $PERL    = $^X || 'perl';
 $UNTAINT_PATTERN  = qr|^([-+@\w./:\\]+)$|;