point out how easy it is to move from override to around
[gitmo/Moo.git] / lib / Moo.pm
CommitLineData
b1eebd55 1package Moo;
6c74d087 2
3use strictures 1;
b1eebd55 4use Moo::_Utils;
e0e12d16 5use B 'perlstring';
a41e15c3 6use Sub::Defer ();
6c74d087 7
e2cade88 8our $VERSION = '0.091007'; # 0.91.7
6d71fae7 9$VERSION = eval $VERSION;
10
c2cb1fed 11require Moo::sification;
8c46a8f6 12
14f32032 13our %MAKERS;
14
6c74d087 15sub import {
16 my $target = caller;
a16d301e 17 my $class = shift;
de3d4906 18 strictures->import;
1ba11455 19 return if $MAKERS{$target}; # already exported into this package
167455a0 20 _install_coderef "${target}::extends" => "Moo::extends" => sub {
fb5074f6 21 _load_module($_) for @_;
786e5ba0 22 # Can't do *{...} = \@_ or 5.10.0's mro.pm stops seeing @ISA
23 @{*{_getglob("${target}::ISA")}{ARRAY}} = @_;
3b0d7efd 24 if (my $old = delete $Moo::MAKERS{$target}{constructor}) {
25 delete _getstash($target)->{new};
26 Moo->_constructor_maker_for($target)
27 ->register_attribute_specs(%{$old->all_attribute_specs});
28 }
c100c04c 29 $Moo::HandleMoose::MOUSE{$target} = [
30 grep defined, map Mouse::Util::find_meta($_), @_
31 ] if $INC{"Mouse.pm"};
6c49212f 32 $class->_maybe_reset_handlemoose($target);
3d49ee27 33 return;
6c74d087 34 };
167455a0 35 _install_coderef "${target}::with" => "Moo::with" => sub {
faa9ce11 36 require Moo::Role;
6893ea30 37 Moo::Role->apply_roles_to_package($target, $_[0]);
6c49212f 38 $class->_maybe_reset_handlemoose($target);
6c74d087 39 };
a16d301e 40 $MAKERS{$target} = {};
167455a0 41 _install_coderef "${target}::has" => "Moo::has" => sub {
14f32032 42 my ($name, %spec) = @_;
a16d301e 43 $class->_constructor_maker_for($target)
44 ->register_attribute_specs($name, \%spec);
02e9ef74 45 $class->_accessor_maker_for($target)
46 ->generate_method($target, $name, \%spec);
6c49212f 47 $class->_maybe_reset_handlemoose($target);
3d49ee27 48 return;
14f32032 49 };
6c74d087 50 foreach my $type (qw(before after around)) {
167455a0 51 _install_coderef "${target}::${type}" => "Moo::${type}" => sub {
faa9ce11 52 require Class::Method::Modifiers;
6c74d087 53 _install_modifier($target, $type, @_);
3d49ee27 54 return;
6c74d087 55 };
56 }
57 {
58 no strict 'refs';
59 @{"${target}::ISA"} = do {
faa9ce11 60 require Moo::Object; ('Moo::Object');
6c74d087 61 } unless @{"${target}::ISA"};
62 }
3362e41c 63 if ($INC{'Moo/HandleMoose.pm'}) {
64 Moo::HandleMoose::inject_fake_metaclass_for($target);
65 }
6c74d087 66}
67
6c49212f 68sub _maybe_reset_handlemoose {
69 my ($class, $target) = @_;
70 if ($INC{"Moo/HandleMoose.pm"}) {
71 Moo::HandleMoose::maybe_reinject_fake_metaclass_for($target);
72 }
73}
74
02e9ef74 75sub _accessor_maker_for {
76 my ($class, $target) = @_;
77 return unless $MAKERS{$target};
78 $MAKERS{$target}{accessor} ||= do {
79 my $maker_class = do {
80 if (my $m = do {
81 if (my $defer_target =
82 (Sub::Defer::defer_info($target->can('new'))||[])->[0]
83 ) {
84 my ($pkg) = ($defer_target =~ /^(.*)::[^:]+$/);
85 $MAKERS{$pkg} && $MAKERS{$pkg}{accessor};
86 } else {
87 undef;
88 }
89 }) {
90 ref($m);
91 } else {
92 require Method::Generate::Accessor;
93 'Method::Generate::Accessor'
94 }
95 };
96 $maker_class->new;
97 }
98}
99
a16d301e 100sub _constructor_maker_for {
c4570291 101 my ($class, $target, $select_super) = @_;
a16d301e 102 return unless $MAKERS{$target};
103 $MAKERS{$target}{constructor} ||= do {
faa9ce11 104 require Method::Generate::Constructor;
105 require Sub::Defer;
c4570291 106 my ($moo_constructor, $con);
de5c0e53 107
c4570291 108 if ($select_super && $MAKERS{$select_super}) {
109 $moo_constructor = 1;
110 $con = $MAKERS{$select_super}{constructor};
111 } else {
de5c0e53 112 my $t_new = $target->can('new');
c4570291 113 if ($t_new) {
114 if ($t_new == Moo::Object->can('new')) {
115 $moo_constructor = 1;
116 } elsif (my $defer_target = (Sub::Defer::defer_info($t_new)||[])->[0]) {
117 my ($pkg) = ($defer_target =~ /^(.*)::[^:]+$/);
118 if ($MAKERS{$pkg}) {
119 $moo_constructor = 1;
120 $con = $MAKERS{$pkg}{constructor};
121 }
122 }
123 } else {
124 $moo_constructor = 1; # no other constructor, make a Moo one
125 }
de5c0e53 126 };
02e9ef74 127 ($con ? ref($con) : 'Method::Generate::Constructor')
a16d301e 128 ->new(
129 package => $target,
02e9ef74 130 accessor_generator => $class->_accessor_maker_for($target),
53875e2c 131 construction_string => (
132 $moo_constructor
133 ? ($con ? $con->construction_string : undef)
134 : ('$class->'.$target.'::SUPER::new(@_)')
e0e12d16 135 ),
76ab3977 136 subconstructor_handler => (
137 ' if ($Moo::MAKERS{$class}) {'."\n"
138 .' '.$class.'->_constructor_maker_for($class,'.perlstring($target).');'."\n"
139 .' return $class->new(@_)'.";\n"
140 .' }'."\n"
e0e12d16 141 ),
a16d301e 142 )
143 ->install_delayed
de5c0e53 144 ->register_attribute_specs(%{$con?$con->all_attribute_specs:{}})
a16d301e 145 }
146}
147
6c74d087 1481;
a17be455 149=pod
150
151=encoding utf-8
8146585e 152
505f8b7a 153=head1 NAME
154
155Moo - Minimalist Object Orientation (with Moose compatiblity)
156
8146585e 157=head1 SYNOPSIS
158
159 package Cat::Food;
160
161 use Moo;
162 use Sub::Quote;
163
164 sub feed_lion {
165 my $self = shift;
166 my $amount = shift || 1;
167
168 $self->pounds( $self->pounds - $amount );
169 }
170
171 has taste => (
172 is => 'ro',
173 );
174
175 has brand => (
176 is => 'ro',
177 isa => sub {
178 die "Only SWEET-TREATZ supported!" unless $_[0] eq 'SWEET-TREATZ'
179 },
180);
181
182 has pounds => (
183 is => 'rw',
184 isa => quote_sub q{ die "$_[0] is too much cat food!" unless $_[0] < 15 },
185 );
186
187 1;
188
189and else where
190
191 my $full = Cat::Food->new(
192 taste => 'DELICIOUS.',
193 brand => 'SWEET-TREATZ',
194 pounds => 10,
195 );
196
197 $full->feed_lion;
198
199 say $full->pounds;
200
201=head1 DESCRIPTION
202
203This module is an extremely light-weight, high-performance L<Moose> replacement.
204It also avoids depending on any XS modules to allow simple deployments. The
205name C<Moo> is based on the idea that it provides almost -but not quite- two
206thirds of L<Moose>.
207
208Unlike C<Mouse> this module does not aim at full L<Moose> compatibility. See
209L</INCOMPATIBILITIES> for more details.
210
5d5bb71d 211=head1 WHY MOO EXISTS
212
213If you want a full object system with a rich Metaprotocol, L<Moose> is
214already wonderful.
215
216I've tried several times to use L<Mouse> but it's 3x the size of Moo and
217takes longer to load than most of my Moo based CGI scripts take to run.
218
219If you don't want L<Moose>, you don't want "less metaprotocol" like L<Mouse>,
220you want "as little as possible" - which means "no metaprotocol", which is
221what Moo provides.
222
223By Moo 1.0 I intend to have Moo's equivalent of L<Any::Moose> built in -
224if Moose gets loaded, any Moo class or role will act as a Moose equivalent
225if treated as such.
226
227Hence - Moo exists as its name - Minimal Object Orientation - with a pledge
228to make it smooth to upgrade to L<Moose> when you need more than minimal
229features.
230
1fce5bc9 231=head1 Moo and Moose - NEW, EXPERIMENTAL
232
233If L<Moo> detects L<Moose> being loaded, it will automatically register
234metaclasses for your L<Moo> and L<Moo::Role> packages, so you should be able
235to use them in L<Moose> code without it ever realising you aren't using
236L<Moose> everywhere.
237
238Extending a L<Moose> class or consuming a L<Moose::Role> should also work.
239
c100c04c 240So should extending a L<Mouse> class or consuming a L<Mouse::Role>.
241
660f3db2 242This means that there is no need for anything like L<Any::Moose> for Moo
c100c04c 243code - Moo and Moose code should simply interoperate without problem. To
244handle L<Mouse> code, you'll likely need an empty Moo role or class consuming
245or extending the L<Mouse> stuff since it doesn't register true L<Moose>
246metaclasses like we do.
660f3db2 247
248However, these features are new as of 0.91.0 (0.091000) so while serviceable,
249they are absolutely certain to not be 100% yet; please do report bugs.
1fce5bc9 250
251If you need to disable the metaclass creation, add:
252
253 no Moo::sification;
254
255to your code before Moose is loaded, but bear in mind that this switch is
256currently global and turns the mechanism off entirely, so don't put this
257in library code, only in a top level script as a temporary measure while
258you send a bug report.
259
8146585e 260=head1 IMPORTED METHODS
261
262=head2 new
263
264 Foo::Bar->new( attr1 => 3 );
265
266or
267
268 Foo::Bar->new({ attr1 => 3 });
269
2e575bcd 270=head2 BUILDARGS
271
f2eac33e 272 sub BUILDARGS {
a17be455 273 my ( $class, @args ) = @_;
274
275 unshift @args, "attr1" if @args % 2 == 1;
276
f2eac33e 277 return { @args };
a17be455 278 };
279
280 Foo::Bar->new( 3 );
281
282The default implementation of this method accepts a hash or hash reference of
283named parameters. If it receives a single argument that isn't a hash reference
284it throws an error.
285
286You can override this method in your class to handle other types of options
287passed to the constructor.
288
289This method should always return a hash reference of named options.
2e575bcd 290
2d00f3d6 291=head2 BUILD
8146585e 292
2d00f3d6 293Define a C<BUILD> method on your class and the constructor will automatically
294call the C<BUILD> method from parent down to child after the object has
295been instantiated. Typically this is used for object validation or possibly
296logging.
8146585e 297
2d00f3d6 298=head2 DEMOLISH
c2cc003f 299
debb3fcd 300If you have a C<DEMOLISH> method anywhere in your inheritance hierarchy,
301a C<DESTROY> method is created on first object construction which will call
c2cc003f 302C<< $instance->DEMOLISH($in_global_destruction) >> for each C<DEMOLISH>
debb3fcd 303method from child upwards to parents.
304
305Note that the C<DESTROY> method is created on first construction of an object
306of your class in order to not add overhead to classes without C<DEMOLISH>
307methods; this may prove slightly surprising if you try and define your own.
c2cc003f 308
8146585e 309=head2 does
310
311 if ($foo->does('Some::Role1')) {
312 ...
313 }
314
315Returns true if the object composes in the passed role.
316
317=head1 IMPORTED SUBROUTINES
318
319=head2 extends
320
321 extends 'Parent::Class';
322
2e575bcd 323Declares base class. Multiple superclasses can be passed for multiple
324inheritance (but please use roles instead).
325
326Calling extends more than once will REPLACE your superclasses, not add to
327them like 'use base' would.
8146585e 328
329=head2 with
330
331 with 'Some::Role1';
8146585e 332
f9755246 333or
334
335 with 'Some::Role1', 'Some::Role2';
336
337Composes one or more L<Moo::Role> (or L<Role::Tiny>) roles into the current
338class. An error will be raised if these roles have conflicting methods.
8146585e 339
340=head2 has
341
342 has attr => (
343 is => 'ro',
344 );
345
346Declares an attribute for the class.
347
348The options for C<has> are as follows:
349
350=over 2
351
352=item * is
353
6577509a 354B<required>, may be C<ro>, C<lazy>, C<rwp> or C<rw>.
71db76ce 355
356C<ro> generates an accessor that dies if you attempt to write to it - i.e.
357a getter only - by defaulting C<reader> to the name of the attribute.
358
71db76ce 359C<lazy> generates a reader like C<ro>, but also sets C<lazy> to 1 and
360C<builder> to C<_build_${attribute_name}> to allow on-demand generated
361attributes. This feature was my attempt to fix my incompetence when
362originally designing C<lazy_build>, and is also implemented by
363L<MooseX::AttributeShortcuts>.
364
365C<rwp> generates a reader like C<ro>, but also sets C<writer> to
366C<_set_${attribute_name}> for attributes that are designed to be written
367from inside of the class, but read-only from outside.
368This feature comes from L<MooseX::AttributeShortcuts>.
8146585e 369
6577509a 370C<rw> generates a normal getter/setter by defaulting C<accessor> to the
371name of the attribute.
372
8146585e 373=item * isa
374
375Takes a coderef which is meant to validate the attribute. Unlike L<Moose> Moo
376does not include a basic type system, so instead of doing C<< isa => 'Num' >>,
377one should do
378
379 isa => quote_sub q{
380 die "$_[0] is not a number!" unless looks_like_number $_[0]
381 },
382
383L<Sub::Quote aware|/SUB QUOTE AWARE>
384
c4074652 385Since L<Moo> does B<not> run the C<isa> check before C<coerce> if a coercion
386subroutine has been supplied, C<isa> checks are not structural to your code
387and can, if desired, be omitted on non-debug builds (although if this results
388in an uncaught bug causing your program to break, the L<Moo> authors guarantee
389nothing except that you get to keep both halves).
390
71db76ce 391If you want L<MooseX::Types> style named types, look at
392L<MooX::Types::MooseLike>.
393
394To cause your C<isa> entries to be automatically mapped to named
395L<Moose::Meta::TypeConstraint> objects (rather than the default behaviour
396of creating an anonymous type), set:
397
398 $Moo::HandleMoose::TYPE_MAP{$isa_coderef} = sub {
399 require MooseX::Types::Something;
400 return MooseX::Types::Something::TypeName();
401 };
402
403Note that this example is purely illustrative; anything that returns a
404L<Moose::Meta::TypeConstraint> object or something similar enough to it to
405make L<Moose> happy is fine.
406
8146585e 407=item * coerce
408
409Takes a coderef which is meant to coerce the attribute. The basic idea is to
410do something like the following:
411
412 coerce => quote_sub q{
413 $_[0] + 1 unless $_[0] % 2
414 },
415
c4074652 416Note that L<Moo> will always fire your coercion - this is to permit
417isa entries to be used purely for bug trapping, whereas coercions are
418always structural to your code. We do, however, apply any supplied C<isa>
419check after the coercion has run to ensure that it returned a valid value.
8146585e 420
23a3e34e 421L<Sub::Quote aware|/SUB QUOTE AWARE>
2e575bcd 422
e1efec09 423=item * handles
424
425Takes a string
426
69673ca7 427 handles => 'RobotRole'
428
429Where C<RobotRole> is a role (L<Moo::Role>) that defines an interface which
430becomes the list of methods to handle.
e1efec09 431
432Takes a list of methods
433
434 handles => [ qw( one two ) ]
435
436Takes a hashref
437
438 handles => {
439 un => 'one',
440 }
441
8146585e 442=item * trigger
443
6fe5100d 444Takes a coderef which will get called any time the attribute is set. This
445includes the constructor. Coderef will be invoked against the object with the
446new value as an argument.
8146585e 447
71db76ce 448If you set this to just C<1>, it generates a trigger which calls the
449C<_trigger_${attr_name}> method on C<$self>. This feature comes from
450L<MooseX::AttributeShortcuts>.
451
2e575bcd 452Note that Moose also passes the old value, if any; this feature is not yet
453supported.
454
8146585e 455L<Sub::Quote aware|/SUB QUOTE AWARE>
456
457=item * default
458
2e575bcd 459Takes a coderef which will get called with $self as its only argument
460to populate an attribute if no value is supplied to the constructor - or
461if the attribute is lazy, when the attribute is first retrieved if no
462value has yet been provided.
463
464Note that if your default is fired during new() there is no guarantee that
465other attributes have been populated yet so you should not rely on their
466existence.
8146585e 467
468L<Sub::Quote aware|/SUB QUOTE AWARE>
469
470=item * predicate
471
2e575bcd 472Takes a method name which will return true if an attribute has a value.
8146585e 473
71db76ce 474If you set this to just C<1>, the predicate is automatically named
475C<has_${attr_name}> if your attribute's name does not start with an
476underscore, or <_has_${attr_name_without_the_underscore}> if it does.
477This feature comes from L<MooseX::AttributeShortcuts>.
8146585e 478
479=item * builder
480
2e575bcd 481Takes a method name which will be called to create the attribute - functions
482exactly like default except that instead of calling
483
484 $default->($self);
485
486Moo will call
487
488 $self->$builder;
8146585e 489
71db76ce 490If you set this to just C<1>, the predicate is automatically named
491C<_build_${attr_name}>. This feature comes from L<MooseX::AttributeShortcuts>.
492
8146585e 493=item * clearer
494
495Takes a method name which will clear the attribute.
496
71db76ce 497If you set this to just C<1>, the clearer is automatically named
498C<clear_${attr_name}> if your attribute's name does not start with an
499underscore, or <_clear_${attr_name_without_the_underscore}> if it does.
500This feature comes from L<MooseX::AttributeShortcuts>.
501
8146585e 502=item * lazy
503
504B<Boolean>. Set this if you want values for the attribute to be grabbed
505lazily. This is usually a good idea if you have a L</builder> which requires
506another attribute to be set.
507
508=item * required
509
510B<Boolean>. Set this if the attribute must be passed on instantiation.
511
1eba910c 512=item * reader
513
514The value of this attribute will be the name of the method to get the value of
515the attribute. If you like Java style methods, you might set this to
516C<get_foo>
517
518=item * writer
519
520The value of this attribute will be the name of the method to set the value of
521the attribute. If you like Java style methods, you might set this to
522C<set_foo>
523
8146585e 524=item * weak_ref
525
526B<Boolean>. Set this if you want the reference that the attribute contains to
527be weakened; use this when circular references are possible, which will cause
528leaks.
529
530=item * init_arg
531
532Takes the name of the key to look for at instantiation time of the object. A
533common use of this is to make an underscored attribute have a non-underscored
534initialization name. C<undef> means that passing the value in on instantiation
71db76ce 535is ignored.
8146585e 536
537=back
538
539=head2 before
540
541 before foo => sub { ... };
542
543See L<< Class::Method::Modifiers/before method(s) => sub { ... } >> for full
544documentation.
545
546=head2 around
547
548 around foo => sub { ... };
549
550See L<< Class::Method::Modifiers/around method(s) => sub { ... } >> for full
551documentation.
552
553=head2 after
554
555 after foo => sub { ... };
556
557See L<< Class::Method::Modifiers/after method(s) => sub { ... } >> for full
558documentation.
559
8146585e 560=head1 SUB QUOTE AWARE
561
562L<Sub::Quote/quote_sub> allows us to create coderefs that are "inlineable,"
563giving us a handy, XS-free speed boost. Any option that is L<Sub::Quote>
564aware can take advantage of this.
565
2e575bcd 566=head1 INCOMPATIBILITIES WITH MOOSE
8146585e 567
5902c1fc 568There is no built in type system. C<isa> is verified with a coderef, if you
8146585e 569need complex types, just make a library of coderefs, or better yet, functions
5902c1fc 570that return quoted subs. L<MooX::Types::MooseLike> provides a similar API
571to L<MooseX::Types::Moose> so that you can write
572
573 has days_to_live => (is => 'ro', isa => Int);
574
575and have it work with both; it is hoped that providing only subrefs as an
576API will encourage the use of other type systems as well, since it's
577probably the weakest part of Moose design-wise.
8146585e 578
2e575bcd 579C<initializer> is not supported in core since the author considers it to be a
f88623a1 580bad idea but may be supported by an extension in future. Meanwhile C<trigger> or
581C<coerce> are more likely to be able to fulfill your needs.
8146585e 582
583There is no meta object. If you need this level of complexity you wanted
2e575bcd 584L<Moose> - Moo succeeds at being small because it explicitly does not
f9755246 585provide a metaprotocol. However, if you load L<Moose>, then
586
587 Class::MOP::class_of($moo_class_or_role)
588
589will return an appropriate metaclass pre-populated by L<Moo>.
8146585e 590
13e41b70 591No support for C<super>, C<override>, C<inner>, or C<augment> - the author
592considers augment to be a bad idea, and override can be translated:
593
594 override foo => sub {
595 ...
596 super();
597 ...
598 };
599
600 around foo => sub {
601 my ($orig, $self) = (shift, shift);
602 ...
603 $self->$orig(@_);
604 ...
605 };
8146585e 606
f2eac33e 607The C<dump> method is not provided by default. The author suggests loading
c96a6326 608L<Devel::Dwarn> into C<main::> (via C<perl -MDevel::Dwarn ...> for example) and
609using C<$obj-E<gt>$::Dwarn()> instead.
610
8146585e 611L</default> only supports coderefs, because doing otherwise is usually a
612mistake anyway.
613
f9755246 614C<lazy_build> is not supported; you are instead encouraged to use the
615C<is => 'lazy'> option supported by L<Moo> and L<MooseX::AttributeShortcuts>.
8146585e 616
2e575bcd 617C<auto_deref> is not supported since the author considers it a bad idea.
8146585e 618
f9755246 619C<documentation> will show up in a L<Moose> metaclass created from your class
c4074652 620but is otherwise ignored. Then again, L<Moose> ignores it as well, so this
f9755246 621is arguably not an incompatibility.
40f3e3aa 622
c4074652 623Since C<coerce> does not require C<isa> to be defined but L<Moose> does
624require it, the metaclass inflation for coerce-alone is a trifle insane
625and if you attempt to subtype the result will almost certainly break.
626
69673ca7 627Handling of warnings: when you C<use Moo> we enable FATAL warnings. The nearest
628similar invocation for L<Moose> would be:
629
630 use Moose;
631 use warnings FATAL => "all";
632
633Additionally, L<Moo> supports a set of attribute option shortcuts intended to
634reduce common boilerplate. The set of shortcuts is the same as in the L<Moose>
239d4711 635module L<MooseX::AttributeShortcuts> as of its version 0.009+. So if you:
69673ca7 636
637 package MyClass;
638 use Moo;
639
640The nearest L<Moose> invocation would be:
641
642 package MyClass;
643
644 use Moose;
645 use warnings FATAL => "all";
646 use MooseX::AttributeShortcuts;
647
5902c1fc 648or, if you're inheriting from a non-Moose class,
649
650 package MyClass;
651
652 use Moose;
653 use MooseX::NonMoose;
654 use warnings FATAL => "all";
655 use MooseX::AttributeShortcuts;
656
657Finally, Moose requires you to call
658
659 __PACKAGE__->meta->make_immutable;
660
661at the end of your class to get an inlined (i.e. not horribly slow)
662constructor. Moo does it automatically the first time ->new is called
663on your class.
664
660f3db2 665=head1 SUPPORT
666
667IRC: #web-simple on irc.perl.org
668
40f3e3aa 669=head1 AUTHOR
670
671mst - Matt S. Trout (cpan:MSTROUT) <mst@shadowcat.co.uk>
672
673=head1 CONTRIBUTORS
674
5da684a2 675dg - David Leadbeater (cpan:DGL) <dgl@dgl.cx>
676
677frew - Arthur Axel "fREW" Schmidt (cpan:FREW) <frioux@gmail.com>
678
679hobbs - Andrew Rodland (cpan:ARODLAND) <arodland@cpan.org>
680
681jnap - John Napiorkowski (cpan:JJNAPIORK) <jjn1056@yahoo.com>
682
683ribasushi - Peter Rabbitson (cpan:RIBASUSHI) <ribasushi@cpan.org>
40f3e3aa 684
11f7a042 685chip - Chip Salzenberg (cpan:CHIPS) <chip@pobox.com>
686
a17be455 687ajgb - Alex J. G. Burzyński (cpan:AJGB) <ajgb@cpan.org>
688
7b8177f8 689doy - Jesse Luehrs (cpan:DOY) <doy at tozt dot net>
690
1fb2de92 691perigrin - Chris Prather (cpan:PERIGRIN) <chris@prather.org>
692
40f3e3aa 693=head1 COPYRIGHT
694
a958e36d 695Copyright (c) 2010-2011 the Moo L</AUTHOR> and L</CONTRIBUTORS>
40f3e3aa 696as listed above.
697
698=head1 LICENSE
699
700This library is free software and may be distributed under the same terms
701as perl itself.
702
703=cut