|
NAMEMooseX::MetaDescription::Meta::Trait - Custom class meta-trait for meta-descriptions SYNOPSIS package Foo;
use Moose;
has 'baz' => (
# apply this as a trait to your attribute
traits => [ 'MooseX::MetaDescription::Meta::Trait' ],
is => 'ro',
isa => 'Str',
default => sub { 'Foo::baz' },
description => {
bar => 'Foo::baz::bar',
gorch => 'Foo::baz::gorch',
}
);
DESCRIPTIONThis is the core of the Meta Description functionality, it is a role that is done by both MooseX::MetaDescription::Meta::Attribute and MooseX::MetaDescription::Meta::Class and can be used on it's own as a meta-attribute trait. METHODS
BUGSAll complex software has bugs lurking in it, and this module is no exception. If you find a bug please either email me, or add the bug to cpan-RT. AUTHORStevan Little <stevan.little@iinteractive.com> COPYRIGHT AND LICENSECopyright 2008 Infinity Interactive, Inc. <http://www.iinteractive.com> This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
|