diff --git a/Build.PL b/Build.PL index 5d66434..3f168cc 100644 --- a/Build.PL +++ b/Build.PL @@ -17,8 +17,12 @@ my($builder) = Module::Build -> new }, requires => { + Moos => 0.13, + parent => 0, perl => 5.006, + strict => 0, Tree::Simple => 0, + warnings => 0, }, ); diff --git a/META.json b/META.json index b76030f..3ff416d 100644 --- a/META.json +++ b/META.json @@ -27,8 +27,12 @@ }, "runtime" : { "requires" : { + "Moos" : "0.13", "Tree::Simple" : "0", - "perl" : "5.006" + "parent" : "0", + "perl" : "5.006", + "strict" : "0", + "warnings" : "0" } } }, diff --git a/META.yml b/META.yml index aa61f34..19393d9 100644 --- a/META.yml +++ b/META.yml @@ -25,8 +25,12 @@ provides: file: lib/HTML/Parser/Simple/Reporter.pm version: 1.08 requires: + Moos: 0.13 Tree::Simple: 0 + parent: 0 perl: 5.006 + strict: 0 + warnings: 0 resources: license: http://www.perlfoundation.org/artistic_license_1_0 version: 1.08 diff --git a/MYMETA.json b/MYMETA.json index 386a557..69fb6da 100644 --- a/MYMETA.json +++ b/MYMETA.json @@ -27,8 +27,12 @@ }, "runtime" : { "requires" : { + "Moos" : "0.13", "Tree::Simple" : "0", - "perl" : "5.006" + "parent" : "0", + "perl" : "5.006", + "strict" : "0", + "warnings" : "0" } } }, diff --git a/Makefile.PL b/Makefile.PL index b5ecd27..a4f4458 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -24,10 +24,14 @@ WriteMakefile PL_FILES => {}, PREREQ_PM => { + Moos => 0.13, + parent => 0, perl => 5.006, + strict => 0, Test::More => 0, Test::Pod => 0, Tree::Simple => 0, + warnings => 0, }, VERSION_FROM => 'lib/HTML/Parser/Simple.pm', ); diff --git a/lib/HTML/Parser/Simple.pm b/lib/HTML/Parser/Simple.pm index 9b1c828..f5dd276 100644 --- a/lib/HTML/Parser/Simple.pm +++ b/lib/HTML/Parser/Simple.pm @@ -1,7 +1,5 @@ package HTML::Parser::Simple; -use File::Spec; - use Moos; # Turns on strict and warnings. Provides 'has'. use Tree::Simple;