Revision history for Perl extension MooseX::MetaDescription
+0.04
+ * Fix tests to work without undocumented features which
+ aren't present in the latest refactor of attributes in roles.
+
0.03
* MooseX::MetaDescription::Meta::Trait
- added the prepare_traits_for_application method
with 'MooseX::MetaDescription::Meta::Trait';
- has '+metadescription_classname' => (
- default => 'Foo::Description'
+ has 'metadescription_classname' => (
+ default => 'Foo::Description',
+ is => 'ro',
);
package Foo::MetaDescription::Attribute;
use Moose;
extends 'MooseX::MetaDescription::Meta::Attribute';
- with 'Foo::MetaDescription::Trait';
- has '+metadescription_classname' => (
- default => 'Foo::Description'
+ has 'metadescription_classname' => (
+ default => 'Foo::Description',
+ is => 'ro',
);
}