X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FMooseX%2FStrictConstructor.pm;h=e0246860259c4f75c53da23f96a9846e6954212c;hb=c8a39fc4c1fd5da3a1262cee50e9fe65dc30d221;hp=54a1001cdb8c4694f9b6ae86cfe7219bcf66e70b;hpb=3fdb2537231b23a1629574b87efea1bd36c15461;p=gitmo%2FMooseX-StrictConstructor.git diff --git a/lib/MooseX/StrictConstructor.pm b/lib/MooseX/StrictConstructor.pm index 54a1001..e024686 100644 --- a/lib/MooseX/StrictConstructor.pm +++ b/lib/MooseX/StrictConstructor.pm @@ -3,52 +3,30 @@ package MooseX::StrictConstructor; use strict; use warnings; -our $VERSION = '0.08'; -$VERSION = eval $VERSION; - -use Moose 0.74 (); +use Moose 0.94 (); use Moose::Exporter; use Moose::Util::MetaRole; use MooseX::StrictConstructor::Role::Object; +use MooseX::StrictConstructor::Role::Meta::Class; use MooseX::StrictConstructor::Role::Meta::Method::Constructor; - -Moose::Exporter->setup_import_methods(); - -sub init_meta -{ - shift; - my %p = @_; - - Moose->init_meta(%p); - - my $caller = $p{for_class}; - - Moose::Util::MetaRole::apply_metaclass_roles - ( for_class => $caller, - constructor_class_roles => - ['MooseX::StrictConstructor::Role::Meta::Method::Constructor'], - ); - - Moose::Util::MetaRole::apply_base_class_roles - ( for_class => $caller, - roles => - [ 'MooseX::StrictConstructor::Role::Object' ], - ); - - return $caller->meta(); -} +Moose::Exporter->setup_import_methods( + class_metaroles => { + ($Moose::VERSION >= 1.9900 + ? (class => ['MooseX::StrictConstructor::Role::Meta::Class']) + : (constructor => ['MooseX::StrictConstructor::Role::Meta::Method::Constructor'])), + }, + base_class_roles => ['MooseX::StrictConstructor::Role::Object'], +); 1; +# ABSTRACT: Make your object constructors blow up on unknown attributes + __END__ =pod -=head1 NAME - -MooseX::StrictConstructor - Make your object constructors blow up on unknown attributes - =head1 SYNOPSIS package My::Class; @@ -90,10 +68,6 @@ you can delete it from the hash reference of parameters. } } -=head1 AUTHOR - -Dave Rolsky, C<< >> - =head1 BUGS Please report any bugs or feature requests to @@ -102,11 +76,4 @@ interface at L. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes. -=head1 COPYRIGHT & LICENSE - -Copyright 2007-2008 Dave Rolsky, All Rights Reserved. - -This program is free software; you can redistribute it and/or modify -it under the same terms as Perl itself. - =cut