making easier to extend
[gitmo/MooseX-MetaDescription.git] / lib / MooseX / MetaDescription.pm
CommitLineData
c13295c8 1package MooseX::MetaDescription;
2use Moose;
3
7c697304 4our $VERSION = '0.03';
91297cb4 5our $AUTHORITY = 'cpan:STEVAN';
6
c13295c8 7use MooseX::MetaDescription::Meta::Class;
8use MooseX::MetaDescription::Meta::Attribute;
5d49532a 9use MooseX::MetaDescription::Description;
c13295c8 10
c13295c8 11no Moose; 1;
12
13__END__
14
15=pod
16
17=head1 NAME
18
48b1f986 19MooseX::MetaDescription - A framework for adding additional metadata to Moose classes
c13295c8 20
21=head1 SYNOPSIS
22
56e78a9c 23 package Foo;
24 use metaclass 'MooseX::MetaDescription::Meta::Class' => (
25 # add class-level metadata
26 description => {
27 'Hello' => 'World'
28 }
29 );
30 use Moose;
31
32 has 'bar' => (
33 metaclass => 'MooseX::MetaDescription::Meta::Attribute',
34 is => 'ro',
35 isa => 'Str',
36 default => sub { Bar->new() },
37 # add attribute level metadata
38 description => {
39 node_type => 'element',
40 }
41 );
42
43 my $foo = Foo->new;
44
45 $foo->meta->description; # { 'Hello' => 'World' }
46
47 my $bar = $foo->meta->get_attribute('bar');
48
49 # access the desciption HASH directly
50 $bar->description; # { node_type => 'element' }
51
52 # or access the instance of MooseX::MetaDescription::Description
53 $bar->metadescription;
54
55 # access the original attribute metaobject from the metadesc too
56 $bar->metadescription->descriptor == $bar;
c13295c8 57
58=head1 DESCRIPTION
59
c6936f01 60MooseX::MetaDescription allows you to add arbitrary out of band
61metadata to your Moose classes and attributes. This will allow
62you to track out of band data along with attributes, which is
63very useful for say serializing Moose classes in HTML or XML.
0cb2eb0f 64
56e78a9c 65=head METHODS
66
67=over 4
68
69=item B<meta>
70
71The Moose metaclass.
72
73=back
74
c13295c8 75=head1 BUGS
76
77All complex software has bugs lurking in it, and this module is no
78exception. If you find a bug please either email me, or add the bug
79to cpan-RT.
80
81=head1 AUTHOR
82
48b1f986 83Code and Design originally by Jonathan Rockway in the Ernst module,
84extracted and refactored by:
85
c13295c8 86Stevan Little E<lt>stevan.little@iinteractive.comE<gt>
87
88=head1 COPYRIGHT AND LICENSE
89
90Copyright 2008 Infinity Interactive, Inc.
91
92L<http://www.iinteractive.com>
93
94This library is free software; you can redistribute it and/or modify
95it under the same terms as Perl itself.
96
97=cut