Require Moose 1.23
[gitmo/MooseX-ClassAttribute.git] / lib / MooseX / ClassAttribute.pm
CommitLineData
4dee0fd3 1package MooseX::ClassAttribute;
2
4dee0fd3 3use strict;
54a288bd 4use warnings;
4dee0fd3 5
f78d2088 6use Moose 1.23 ();
bb70fe3a 7use Moose::Exporter;
63fcc508 8use MooseX::ClassAttribute::Trait::Class;
9use MooseX::ClassAttribute::Trait::Role;
10use MooseX::ClassAttribute::Trait::Application::ToClass;
11use MooseX::ClassAttribute::Trait::Application::ToRole;
0f24a39d 12
7ce5e557 13Moose::Exporter->setup_import_methods(
14 with_meta => ['class_has'],
15 class_metaroles => {
16 class => ['MooseX::ClassAttribute::Trait::Class'],
17 },
18 role_metaroles => {
19 role => ['MooseX::ClassAttribute::Trait::Role'],
20 application_to_class =>
21 ['MooseX::ClassAttribute::Trait::Application::ToClass'],
22 application_to_role =>
23 ['MooseX::ClassAttribute::Trait::Application::ToRole'],
24 },
25);
8d655404 26
9b2bd146 27sub class_has {
59ee60b4 28 my $meta = shift;
bb70fe3a 29 my $name = shift;
30 my %options = @_;
8d655404 31
bb70fe3a 32 my $attrs = ref $name eq 'ARRAY' ? $name : [$name];
54a288bd 33
9b2bd146 34 $meta->add_class_attribute( $_, %options ) for @{$attrs};
0f24a39d 35}
36
4dee0fd3 371;
38
0d0bf8c3 39# ABSTRACT: Declare class attributes Moose-style
40
4dee0fd3 41__END__
42
43=pod
44
4dee0fd3 45=head1 SYNOPSIS
46
54a288bd 47 package My::Class;
4dee0fd3 48
54a288bd 49 use Moose;
4dee0fd3 50 use MooseX::ClassAttribute;
51
54a288bd 52 class_has 'Cache' =>
53 ( is => 'rw',
54 isa => 'HashRef',
55 default => sub { {} },
56 );
57
58 __PACKAGE__->meta()->make_immutable();
54a288bd 59
60 no Moose;
61 no MooseX::ClassAttribute;
62
63 # then later ...
64
65 My::Class->Cache()->{thing} = ...;
66
54a288bd 67=head1 DESCRIPTION
68
69This module allows you to declare class attributes in exactly the same
169f4cc7 70way as object attributes, using C<class_has()> instead of C<has()>.
54a288bd 71
72You can use any feature of Moose's attribute declarations, including
0388e669 73overriding a parent's attributes, delegation (C<handles>), attribute traits,
74etc. All features should just work. The one exception is the "required" flag,
75which is not allowed for class attributes.
54a288bd 76
169f4cc7 77The accessor methods for class attribute may be called on the class
7dc1418a 78directly, or on objects of that class. Passing a class attribute to
0388e669 79the constructor will not set that attribute.
7dc1418a 80
54a288bd 81=head1 FUNCTIONS
82
83This class exports one function when you use it, C<class_has()>. This
84works exactly like Moose's C<has()>, but it declares class attributes.
85
6c69490f 86One little nit is that if you include C<no Moose> in your class, you won't
87remove the C<class_has()> function. To do that you must include C<no
88MooseX::ClassAttribute> as well. Or you can just use L<namespace::autoclean>
89instead.
54a288bd 90
91=head2 Implementation and Immutability
92
169f4cc7 93This module will add a role to your class's metaclass, See
63fcc508 94L<MooseX::ClassAttribute::Trait::Class> for details. This role
169f4cc7 95provides introspection methods for class attributes.
96
97Class attributes themselves do the
63fcc508 98L<MooseX::ClassAttribute::Trait::Attribute> role.
4dee0fd3 99
169f4cc7 100=head2 Cooperation with Metaclasses and Traits
4dee0fd3 101
169f4cc7 102This module should work with most attribute metaclasses and traits,
103but it's possible that conflicts could occur. This module has been
0388e669 104tested to work with Moose's native traits.
105
106=head2 Class Attributes in Roles
107
108You can add a class attribute to a role. When that role is applied to a class,
109the class will have the relevant class attributes added. Note that attribute
110defaults will be calculated when the class attribute is composed into the
111class.
4dee0fd3 112
7a4a3b1e 113=head1 DONATIONS
114
115If you'd like to thank me for the work I've done on this module,
116please consider making a "donation" to me via PayPal. I spend a lot of
117free time creating free software, and would appreciate any support
118you'd care to offer.
119
120Please note that B<I am not suggesting that you must do this> in order
121for me to continue working on this particular software. I will
122continue to do so, inasmuch as I have in the past, for as long as it
123interests me.
124
125Similarly, a donation made in this way will probably not make me work
126on this software much more, unless I get so many donations that I can
127consider working on free software full time, which seems unlikely at
128best.
129
130To donate, log into PayPal and send money to autarch@urth.org or use
131the button on this page:
132L<http://www.urth.org/~autarch/fs-donation.html>
133
4dee0fd3 134=head1 BUGS
135
54a288bd 136Please report any bugs or feature requests to
137C<bug-moosex-classattribute@rt.cpan.org>, or through the web interface
138at L<http://rt.cpan.org>. I will be notified, and then you'll
139automatically be notified of progress on your bug as I make changes.
4dee0fd3 140
4dee0fd3 141=cut