From: Karen Etheridge Date: Sat, 13 Oct 2012 23:13:57 +0000 (-0700) Subject: find prereqs automatically X-Git-Tag: v0.18~6 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMooseX-AlwaysCoerce.git;a=commitdiff_plain;h=f99502c4fc9ce6b6f4474797c805bd09c0696f48 find prereqs automatically --- diff --git a/Changes b/Changes index 7a597c6..aa27211 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,7 @@ Revision history for {{$dist->name}} {{$NEXT}} + - added missing prerequisite declaration 0.17 2012-06-01 17:52:39 UTC+0000 - conversion to Dist::Zilla diff --git a/dist.ini b/dist.ini index 3521f19..cd473aa 100644 --- a/dist.ini +++ b/dist.ini @@ -21,17 +21,11 @@ repository.type = git [Git::GatherDir] +[AutoPrereqs] +skip = ^MyRole$ + [Prereqs / RuntimeRequires] -Moose = 0 -namespace::autoclean = 0.12 -MooseX::ClassAttribute = 0.24 Package::Stash = 0.26 -Carp = 0 - -[Prereqs / TestRequires] -Test::More = 0 -Test::Fatal = 0 -Test::NoWarnings = 1.04 [InstallGuide] [MetaConfig] diff --git a/lib/MooseX/AlwaysCoerce.pm b/lib/MooseX/AlwaysCoerce.pm index ff7b2c6..14d5767 100644 --- a/lib/MooseX/AlwaysCoerce.pm +++ b/lib/MooseX/AlwaysCoerce.pm @@ -3,9 +3,9 @@ package MooseX::AlwaysCoerce; use strict; use warnings; -use namespace::autoclean; +use namespace::autoclean 0.12; use Moose (); -use MooseX::ClassAttribute (); +use MooseX::ClassAttribute 0.24 (); use Moose::Exporter; use Moose::Util::MetaRole; use Carp;