Fix order of loading in SYNOPSIS
[gitmo/MooseX-SemiAffordanceAccessor.git] / lib / MooseX / SemiAffordanceAccessor.pm
1 package MooseX::SemiAffordanceAccessor;
2
3 use strict;
4 use warnings;
5
6 use Moose 0.94 ();
7 use Moose::Exporter;
8 use Moose::Util::MetaRole;
9 use MooseX::SemiAffordanceAccessor::Role::Attribute;
10
11 Moose::Exporter->setup_import_methods(
12     class_metaroles => {
13         attribute => ['MooseX::SemiAffordanceAccessor::Role::Attribute'],
14     },
15 );
16
17 1;
18
19 # ABSTRACT: Name your accessors foo() and set_foo()
20
21 __END__
22
23 =pod
24
25 =head1 SYNOPSIS
26
27     use Moose;
28     use MooseX::SemiAffordanceAccessor;
29
30     # make some attributes
31
32 =head1 DESCRIPTION
33
34 This module does not provide any methods. Simply loading it changes
35 the default naming policy for the loading class so that accessors are
36 separated into get and set methods. The get methods have the same name
37 as the accessor, while set methods are prefixed with "set_".
38
39 If you define an attribute with a leading underscore, then the set
40 method will start with "_set_".
41
42 If you explicitly set a "reader" or "writer" name when creating an
43 attribute, then that attribute's naming scheme is left unchanged.
44
45 The name "semi-affordance" comes from David Wheeler's Class::Meta
46 module.
47
48 =head1 BUGS
49
50 Please report any bugs or feature requests to
51 C<bug-moosex-semiaffordanceaccessor@rt.cpan.org>, or through
52 the web interface at L<http://rt.cpan.org>.  I will be notified, and
53 then you'll automatically be notified of progress on your bug as I
54 make changes.
55
56 =cut