Add deprecation notices to all modules
[gitmo/Moose-Policy.git] / lib / Moose / Policy / FollowPBP.pm
CommitLineData
461dc6d3 1
2package Moose::Policy::FollowPBP;
3
4use constant attribute_metaclass => 'Moose::Policy::FollowPBP::Attribute';
5
6package Moose::Policy::FollowPBP::Attribute;
7use Moose;
8
9extends 'Moose::Meta::Attribute';
10
11before '_process_options' => sub {
12 my ($class, $name, $options) = @_;
13 # NOTE:
14 # If is has been specified, and
15 # we don't have a reader or writer
16 # Of couse this is an odd case, but
17 # we better test for it anyway.
18 if (exists $options->{is} && !(exists $options->{reader} || exists $options->{writer})) {
19 if ($options->{is} eq 'ro') {
20 $options->{reader} = 'get_' . $name;
21 }
22 elsif ($options->{is} eq 'rw') {
23 $options->{reader} = 'get_' . $name;
24 $options->{writer} = 'set_' . $name;
25 }
26 delete $options->{is};
27 }
28};
29
301;
31
32__END__
33
34=pod
35
09eff61e 36=head1 NAME
37
38Moose::Policy::FollowPBP - Follow the recomendations in Perl Best Practices
39
40=head1 SYNOPSIS
41
42 package Foo;
43
44 use Moose::Policy 'Moose::Policy::FollowPBP';
45 use Moose;
46
47 has 'bar' => (is => 'rw', default => 'Foo::bar');
48 has 'baz' => (is => 'ro', default => 'Foo::baz');
49
50 # Foo now has (get, set)_bar methods as well as get_baz
51
3d1dec0a 52=head1 DEPRECATION NOTICE
53
54B<Moose::Policy is deprecated>.
55
56Use L<MooseX::FollowPBP> instead.
57
09eff61e 58=head1 DESCRIPTION
59
f2a97f92 60This meta-policy changes Moose's default accessor-naming behavior to
04f7377e 61follow the recommendations found in Damian Conway's book I<Perl Best
62Practices>.
09eff61e 63
64=head1 BUGS
65
04f7377e 66All complex software has bugs lurking in it, and this module is no
09eff61e 67exception. If you find a bug please either email me, or add the bug
68to cpan-RT.
69
70=head1 AUTHOR
71
72Stevan Little E<lt>stevan@iinteractive.comE<gt>
73
74=head1 COPYRIGHT AND LICENSE
75
4fe62f68 76Copyright 2006-2007 by Infinity Interactive, Inc.
09eff61e 77
78L<http://www.iinteractive.com>
79
80This library is free software; you can redistribute it and/or modify
81it under the same terms as Perl itself.
82
461dc6d3 83=cut