Version
[gitmo/MooseX-HasDefaults.git] / lib / MooseX / HasDefaults.pm
CommitLineData
76251922 1package MooseX::HasDefaults;
2our $VERSION = '0.01';
3
42065130 4die "Do not use MooseX::HasDefaults, use MooseX::HasDefaults::RO or MooseX::HasDefaults::RW";
5
6"Screw you Perl, I want to return a true value just to spite you even though it's a load failure. Can we PLEASE get rid of the required module return value? Require modules to die instead, like I just did. SIGH!";
7
8__END__
9
10=head1 NAME
11
12MooseX::HasDefaults - default "is" to "ro" or "rw" for all attributes
13
14=head1 SYNOPSIS
15
16 package Person;
17 use Moose;
18 use MooseX::HasDefaults::RO;
19
20 has name => (
21 isa => 'Str',
22 );
23
24 has age => (
25 is => 'rw',
26 isa => 'Int',
27 documentation => "Changes most years",
28 );
29
30=head1 DESCRIPTION
31
0fb18126 32The module L<MooseX::HasDefaults::RO> defaults C<is> to C<ro>.
33
34The module L<MooseX::HasDefaults::RW> defaults C<is> to C<rw>.
35
36If you pass a specific value to any C<has>'s C<is>, that overrides the default. If you do not want an accessor, pass C<< is => undef >>.
37
38=head1 AUTHOR
39
40Shawn M Moore, C<sartak@gmail.com>
41
42=head1 COPYRIGHT AND LICENSE
43
44Copyright 2009 Infinity Interactive
45
46This program is free software; you can redistribute it and/or modify it
47under the same terms as Perl itself.
42065130 48
49=cut
50