bypass new() in _hsv_dot and switch to blessed() to avoid calling our own ref()
[scpubgit/HTML-String.git] / Makefile.PL
index 7a0cf78..853c354 100644 (file)
@@ -1,14 +1,18 @@
 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',
     'B::Hooks::EndOfScope' => '0.11',
     'strictures' => 1,
+    'UNIVERSAL::ref' => 0.14,
   }
 );