we don't actually need strict.pm for the module
Lukas Mai [Sun, 4 Nov 2012 00:39:39 +0000 (01:39 +0100)]
Makefile.PL
lib/Function/Parameters.pm

index 3456a07..8713ef9 100644 (file)
@@ -1,3 +1,5 @@
+#!perl
+# vi: set et sw=4 sts=4:
 use 5.006;
 use strict;
 use warnings;
@@ -14,26 +16,26 @@ WriteMakefile(
     LICENSE => 'perl',
     PL_FILES => {},
     BUILD_REQUIRES => {
+        'strict' => 0,
         'Dir::Self' => 0,
         'Test::More' => 0,
         'Test::Fatal' => 0,
     },
     PREREQ_PM => {
-       'Carp' => 0,
-       'XSLoader' => 0,
+        'Carp' => 0,
+        'XSLoader' => 0,
         'warnings' => 0,
-        'strict' => 0,
     },
     MIN_PERL_VERSION => '5.14.0',
     META_MERGE => {
-       'meta-spec' => { version => 2 },
-       resources => {
-               repository => {
-                       url => 'git://git.shadowcat.co.uk/p5sagit/Function-Parameters',
-                       web => 'http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit/Function-Parameters.git',
-                       type => 'git',
-               },
-       },
+        'meta-spec' => { version => 2 },
+        resources => {
+            repository => {
+                url => 'git://git.shadowcat.co.uk/p5sagit/Function-Parameters',
+                web => 'http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit/Function-Parameters.git',
+                type => 'git',
+            },
+        },
     },
     depend => { Makefile => '$(VERSION_FROM)' },
     test => { TESTS => 't/*.t t/foreign/*.t t/foreign/*/*.t' },
index a397246..fd8c459 100644 (file)
@@ -2,7 +2,6 @@ package Function::Parameters;
 
 use v5.14.0;
 
-use strict;
 use warnings;
 
 use Carp qw(confess);