X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FMooseX%2FStrictConstructor.pm;h=f14e4c452bfdff08877bf08356094874472f67cf;hb=f9ff5c7030df3914e6679676843363cc604a3a83;hp=28c71e7f4502a520e6962640d24d89e1424c4725;hpb=5b66b6d4b70a18c011287412c56f34a321d79d87;p=gitmo%2FMooseX-StrictConstructor.git diff --git a/lib/MooseX/StrictConstructor.pm b/lib/MooseX/StrictConstructor.pm index 28c71e7..f14e4c4 100644 --- a/lib/MooseX/StrictConstructor.pm +++ b/lib/MooseX/StrictConstructor.pm @@ -6,17 +6,20 @@ use warnings; use Moose 0.94 (); use Moose::Exporter; use Moose::Util::MetaRole; -use MooseX::StrictConstructor::Role::Object; -use MooseX::StrictConstructor::Role::Meta::Method::Constructor; - -Moose::Exporter->setup_import_methods( - class_metaroles => { - constructor => - ['MooseX::StrictConstructor::Role::Meta::Method::Constructor'] - }, - base_class_roles => ['MooseX::StrictConstructor::Role::Object'], + +use MooseX::StrictConstructor::Trait::Class; +use MooseX::StrictConstructor::Trait::Method::Constructor;; + +my %metaroles = ( + class => ['MooseX::StrictConstructor::Trait::Class'], ); +$metaroles{constructor} + = ['MooseX::StrictConstructor::Trait::Method::Constructor'] + if $Moose::VERSION <= 1.9900; + +Moose::Exporter->setup_import_methods( class_metaroles => \%metaroles ); + 1; # ABSTRACT: Make your object constructors blow up on unknown attributes @@ -42,9 +45,9 @@ __END__ =head1 DESCRIPTION Simply loading this module makes your constructors "strict". If your -constructor is called with an attribute init argument that your class -does not declare, then it calls "Carp::confess()". This is a great way -to catch small typos. +constructor is called with an attribute init argument that your class does not +declare, then it calls C<< Moose->throw_error() >>. This is a great way to +catch small typos. =head2 Subverting Strictness