--- /dev/null
+ - Initial release
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',
use HTML::String::Value;
use Exporter 'import';
+our $VERSION = '1.000000'; # 1.0.0
+
+$VERSION = eval $VERSION;
+
our @EXPORT = qw(html);
sub html {
--- /dev/null
+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>';