From a193e05da9516baf524330e059841ba63a6a997c Mon Sep 17 00:00:00 2001 From: Karen Etheridge Date: Thu, 29 Jul 2010 15:18:15 -0700 Subject: potential fixes for role problems.. doesnt solve everything though; will have to see if MX::ClassAttribute is partially to blame here (See https://rt.cpan.org/Public/Bug/Display.html?id=59844) --- lib/MooseX/AlwaysCoerce.pm | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/MooseX/AlwaysCoerce.pm b/lib/MooseX/AlwaysCoerce.pm index 0f2c398..96b6213 100644 --- a/lib/MooseX/AlwaysCoerce.pm +++ b/lib/MooseX/AlwaysCoerce.pm @@ -68,6 +68,7 @@ Use C<< coerce => 0 >> to disable a coercion explicitly. use namespace::autoclean; use Moose::Role; use Moose::Util::TypeConstraints; + use MooseX::ClassAttribute; around add_class_attribute => sub { my $next = shift; @@ -82,18 +83,27 @@ Use C<< coerce => 0 >> to disable a coercion explicitly. } my (undef, undef, $init_meta) = Moose::Exporter->build_import_methods( + install => [ qw(import unimport) ], + class_metaroles => { attribute => ['MooseX::AlwaysCoerce::Role::Meta::Attribute'], class => ['MooseX::AlwaysCoerce::Role::Meta::Class'], }, + + also => ['MooseX::ClassAttribute'], ); sub init_meta { my ($class, %options) = @_; my $for_class = $options{for_class}; - MooseX::ClassAttribute->import({ into => $for_class }); + # Bring this in only if we are being applied to a + # metaclass, but not a metarole. + if (Class::MOP::class_of($for_class)->isa('Class::MOP::Class')) + { + MooseX::ClassAttribute->import({ into => $for_class }); + } # call generated method to do the rest of the work. goto $init_meta; -- cgit v1.2.3