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