use new Moose::Exporter features
[gitmo/MooseX-UndefTolerant.git] / lib / MooseX / UndefTolerant.pm
CommitLineData
5447ee45 1package MooseX::UndefTolerant;
5447ee45 2
3use Moose qw();
4use Moose::Exporter;
5447ee45 5
6use MooseX::UndefTolerant::Attribute;
7
8our $VERSION = '0.01';
9
e92df8d4 10Moose::Exporter->setup_import_methods(
11 attribute_metaclass_roles => [ 'MooseX::UndefTolerant::Attribute' ]
12);
5447ee45 13
141;
15
16__END__
17
18=head1 NAME
19
20MooseX::Attribute::UndefTolerant - The great new MooseX::Attribute::UndefTolerant!
21
22=head1 SYNOPSIS
23
24 use MooseX::Attribute::UndefTolerant;
25
26
27=head1 AUTHOR
28
29Cory G Watson, C<< <gphat at cpan.org> >>
30
31=head1 ACKNOWLEDGEMENTS
32
33Hans Dieter Pearcey (confound)
34
35Jesse Luehrs (doy)
36
37Tomas Doran (t0m)
38
39Dylan Hardison (dylan)
40
41Jay Shirley (jshirley)
42
43Mike Eldridge (diz)
44
45=head1 COPYRIGHT & LICENSE
46
47Copyright 2009 Cory G Watson.
48
49This program is free software; you can redistribute it and/or modify it
50under the terms of either: the GNU General Public License as published
51by the Free Software Foundation; or the Artistic License.
52
53See http://dev.perl.org/licenses/ for more information.
54
55
56=cut