Also see Moose::Manual::Delta for more details of, and workarounds
for, noteworthy changes.
+ * Makefile.PL
+ - Use Module::Install extensions explicitly to avoid confusing errors
+ if they're not installed
+ - Use Module::Install::AuthorRequires to stop test extraction and
+ general failures if you don't have the author side dependencies
+ installed
+
0.94
* Moose::Cookbook::Basics::Recipe4
- Grammar error [rt.cpan.org #51791] (Amir E. Aharoni)
use strict;
use warnings;
use inc::Module::Install;
+use Module::Install::ExtraTests;
+use Module::Install::AuthorRequires;
use 5.008001;
check_conflicts();
test_requires 'Test::More' => '0.88';
test_requires 'Test::Exception' => '0.27';
+author_requires 'Test::Inline';
+author_requires 'File::Find::Rule';
+author_requires 'Module::Info';
+
if ( -d '.svn' || -d '.git' || $ENV{IS_MAINTAINER} ) {
system( $^X, 'author/extract-inline-tests' );
}