add changes, release date, and bump version
[gitmo/MooseX-Types-Structured.git] / lib / MooseX / Meta / TypeCoercion / Structured.pm
1 package ## Hide from PAUSE
2  MooseX::Meta::TypeCoercion::Structured;
3
4 use Moose;
5 extends 'Moose::Meta::TypeCoercion';
6
7 =head1 NAME
8
9 MooseX::Meta::TypeCoercion::Structured - Coerce structured type constraints.
10
11 =head1 DESCRIPTION
12
13 We need to make sure we can properly coerce the structure elements inside a
14 structured type constraint.  However requirements for the best way to allow
15 this are still in flux.  For now this class is a placeholder.
16
17 =head1 METHODS
18
19 This class defines the following methods.
20
21 =head1 SEE ALSO
22
23 The following modules or resources may be of interest.
24
25 L<Moose>, L<Moose::Meta::TypeCoercion>
26
27 =head1 AUTHOR
28
29 John Napiorkowski, C<< <jjnapiork@cpan.org> >>
30
31 =head1 COPYRIGHT & LICENSE
32
33 This program is free software; you can redistribute it and/or modify
34 it under the same terms as Perl itself.
35
36 =cut
37
38 __PACKAGE__->meta->make_immutable(inline_constructor => 0);