distify
Matt S Trout [Mon, 13 Aug 2012 20:23:31 +0000 (20:23 +0000)]
Changes [new file with mode: 0644]
Makefile.PL
lib/HTML/String.pm
maint/Makefile.PL.include [new file with mode: 0644]

diff --git a/Changes b/Changes
new file mode 100644 (file)
index 0000000..7185c76
--- /dev/null
+++ b/Changes
@@ -0,0 +1 @@
+  - Initial release
index 2897ead..853c354 100644 (file)
@@ -1,10 +1,13 @@
 use strict;
-use warnings;
+use warnings FATAL => 'all';
 use ExtUtils::MakeMaker;
 
+(do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml';
+
+
 WriteMakefile(
   NAME => 'HTML-String',
-  VERSION => '1.0',
+  VERSION_FROM => 'lib/HTML/String.pm',
   PREREQ_PM => {
     'Safe::Isa' => 1,
     'Data::Munge' => '0.04',
index a320a69..58aa736 100644 (file)
@@ -4,6 +4,10 @@ use strictures 1;
 use HTML::String::Value;
 use Exporter 'import';
 
+our $VERSION = '1.000000'; # 1.0.0
+
+$VERSION = eval $VERSION;
+
 our @EXPORT = qw(html);
 
 sub html {
diff --git a/maint/Makefile.PL.include b/maint/Makefile.PL.include
new file mode 100644 (file)
index 0000000..dc0d14a
--- /dev/null
@@ -0,0 +1,8 @@
+BEGIN {
+  -e 'Distar'
+    or system("git clone git://git.shadowcat.co.uk/p5sagit/Distar.git")
+}
+use lib 'Distar/lib';
+use Distar;
+
+author 'mst - Matt S. Trout (cpan:MSTROUT) <mst@shadowcat.co.uk>';