start of the TC refactor
[gitmo/Moose.git] / lib / Moose.pm
1
2 package Moose;
3
4 use strict;
5 use warnings;
6
7 our $VERSION   = '0.26';
8 our $AUTHORITY = 'cpan:STEVAN';
9
10 use Scalar::Util 'blessed', 'reftype';
11 use Carp         'confess';
12 use Sub::Name    'subname';
13 use B            'svref_2object';
14
15 use Sub::Exporter;
16
17 use Class::MOP 0.39;
18
19 use Moose::Meta::Class;
20 use Moose::Meta::TypeConstraint;
21 use Moose::Meta::TypeCoercion;
22 use Moose::Meta::Attribute;
23 use Moose::Meta::Instance;
24
25 use Moose::Meta::Role;
26
27 use Moose::Object;
28 use Moose::Util::TypeConstraints;
29
30 {
31     my $CALLER;
32
33     sub _init_meta {
34         my $class = $CALLER;
35
36         # make a subtype for each Moose class
37         subtype $class
38             => as 'Object'
39             => where { $_->isa($class) }
40             => optimize_as { blessed($_[0]) && $_[0]->isa($class) }
41         unless find_type_constraint($class);
42
43         my $meta;
44         if ($class->can('meta')) {
45             # NOTE:
46             # this is the case where the metaclass pragma 
47             # was used before the 'use Moose' statement to 
48             # override a specific class
49             $meta = $class->meta();
50             (blessed($meta) && $meta->isa('Moose::Meta::Class'))
51                 || confess "You already have a &meta function, but it does not return a Moose::Meta::Class";
52         }
53         else {
54             # NOTE:
55             # this is broken currently, we actually need 
56             # to allow the possiblity of an inherited 
57             # meta, which will not be visible until the 
58             # user 'extends' first. This needs to have 
59             # more intelligence to it 
60             $meta = Moose::Meta::Class->initialize($class);
61             $meta->add_method('meta' => sub {
62                 # re-initialize so it inherits properly
63                 Moose::Meta::Class->initialize(blessed($_[0]) || $_[0]);
64             })
65         }
66
67         # make sure they inherit from Moose::Object
68         $meta->superclasses('Moose::Object')
69            unless $meta->superclasses();
70     }
71
72     my %exports = (
73         extends => sub {
74             my $class = $CALLER;
75             return subname 'Moose::extends' => sub (@) {
76                 confess "Must derive at least one class" unless @_;
77                 Class::MOP::load_class($_) for @_;
78                 # this checks the metaclass to make sure 
79                 # it is correct, sometimes it can get out 
80                 # of sync when the classes are being built
81                 my $meta = $class->meta->_fix_metaclass_incompatability(@_);
82                 $meta->superclasses(@_);
83             };
84         },
85         with => sub {
86             my $class = $CALLER;
87             return subname 'Moose::with' => sub (@) {
88                 my (@roles) = @_;
89                 confess "Must specify at least one role" unless @roles;
90                 Class::MOP::load_class($_) for @roles;
91                 $class->meta->_apply_all_roles(@roles);
92             };
93         },
94         has => sub {
95             my $class = $CALLER;
96             return subname 'Moose::has' => sub ($;%) {
97                 my ($name, %options) = @_;
98                 my $attrs = (ref($name) eq 'ARRAY') ? $name : [($name)];
99                 $class->meta->_process_attribute($_, %options) for @$attrs;
100             };
101         },
102         before => sub {
103             my $class = $CALLER;
104             return subname 'Moose::before' => sub (@&) {
105                 my $code = pop @_;
106                 my $meta = $class->meta;
107                 $meta->add_before_method_modifier($_, $code) for @_;
108             };
109         },
110         after => sub {
111             my $class = $CALLER;
112             return subname 'Moose::after' => sub (@&) {
113                 my $code = pop @_;
114                 my $meta = $class->meta;
115                 $meta->add_after_method_modifier($_, $code) for @_;
116             };
117         },
118         around => sub {
119             my $class = $CALLER;            
120             return subname 'Moose::around' => sub (@&) {
121                 my $code = pop @_;
122                 my $meta = $class->meta;
123                 $meta->add_around_method_modifier($_, $code) for @_;
124             };
125         },
126         super => sub {
127             {
128               our %SUPER_SLOT;
129               no strict 'refs';
130               $SUPER_SLOT{$CALLER} = \*{"${CALLER}::super"};
131             }
132             return subname 'Moose::super' => sub {};
133         },
134         override => sub {
135             my $class = $CALLER;
136             return subname 'Moose::override' => sub ($&) {
137                 my ($name, $method) = @_;
138                 $class->meta->add_override_method_modifier($name => $method);
139             };
140         },
141         inner => sub {
142             {
143               our %INNER_SLOT;
144               no strict 'refs';
145               $INNER_SLOT{$CALLER} = \*{"${CALLER}::inner"};
146             }
147             return subname 'Moose::inner' => sub {};
148         },
149         augment => sub {
150             my $class = $CALLER;
151             return subname 'Moose::augment' => sub (@&) {
152                 my ($name, $method) = @_;
153                 $class->meta->add_augment_method_modifier($name => $method);
154             };
155         },
156         
157         # NOTE:
158         # this is experimental, but I am not 
159         # happy with it. If you want to try 
160         # it, you will have to uncomment it 
161         # yourself. 
162         # There is a really good chance that 
163         # this will be deprecated, dont get 
164         # too attached
165         # self => sub {
166         #     return subname 'Moose::self' => sub {};
167         # },        
168         # method => sub {
169         #     my $class = $CALLER;
170         #     return subname 'Moose::method' => sub {
171         #         my ($name, $method) = @_;
172         #         $class->meta->add_method($name, sub {
173         #             my $self = shift;
174         #             no strict   'refs';
175         #             no warnings 'redefine';
176         #             local *{$class->meta->name . '::self'} = sub { $self };
177         #             $method->(@_);
178         #         });
179         #     };
180         # },                
181         
182         confess => sub {
183             return \&Carp::confess;
184         },
185         blessed => sub {
186             return \&Scalar::Util::blessed;
187         },
188     );
189
190     my $exporter = Sub::Exporter::build_exporter({ 
191         exports => \%exports,
192         groups  => {
193             default => [':all']
194         }
195     });
196     
197     sub import {     
198         $CALLER = caller();
199         
200         strict->import;
201         warnings->import;        
202
203         # we should never export to main
204         return if $CALLER eq 'main';
205     
206         _init_meta();
207         
208         goto $exporter;
209     }
210     
211     sub unimport {
212         no strict 'refs';        
213         my $class = caller();
214         # loop through the exports ...
215         foreach my $name (keys %exports) {
216             
217             # if we find one ...
218             if (defined &{$class . '::' . $name}) {
219                 my $keyword = \&{$class . '::' . $name};
220                 
221                 # make sure it is from Moose
222                 my $pkg_name = eval { svref_2object($keyword)->GV->STASH->NAME };
223                 next if $@;
224                 next if $pkg_name ne 'Moose';
225                 
226                 # and if it is from Moose then undef the slot
227                 delete ${$class . '::'}{$name};
228             }
229         }
230     }
231     
232     
233 }
234
235 ## make 'em all immutable
236
237 $_->meta->make_immutable(
238     inline_constructor => 0,
239     inline_accessors   => 1,    
240 ) for (
241     'Moose::Meta::Attribute',
242     'Moose::Meta::Class',
243     'Moose::Meta::Instance',
244
245     'Moose::Meta::TypeConstraint',
246     'Moose::Meta::TypeConstraint::Union',
247     'Moose::Meta::TypeConstraint::Container',    
248     'Moose::Meta::TypeCoercion',
249
250     'Moose::Meta::Method',
251     'Moose::Meta::Method::Accessor',
252     'Moose::Meta::Method::Constructor',
253     'Moose::Meta::Method::Destructor',    
254     'Moose::Meta::Method::Overriden',
255
256     'Moose::Meta::Role',
257     'Moose::Meta::Role::Method',    
258     'Moose::Meta::Role::Method::Required',        
259 );
260
261 1;
262
263 __END__
264
265 =pod
266
267 =head1 NAME
268
269 Moose - A complete modern object system for Perl 5
270
271 =head1 SYNOPSIS
272
273   package Point;
274   use Moose; # automatically turns on strict and warnings
275         
276   has 'x' => (is => 'rw', isa => 'Int');
277   has 'y' => (is => 'rw', isa => 'Int');
278   
279   sub clear {
280       my $self = shift;
281       $self->x(0);
282       $self->y(0);    
283   }
284   
285   package Point3D;
286   use Moose;
287   
288   extends 'Point';
289   
290   has 'z' => (is => 'rw', isa => 'Int');
291   
292   after 'clear' => sub {
293       my $self = shift;
294       $self->z(0);
295   }; 
296
297 =head1 DESCRIPTION
298
299 Moose is an extension of the Perl 5 object system. 
300
301 =head2 Another object system!?!?
302
303 Yes, I know there has been an explosion recently of new ways to 
304 build object's in Perl 5, most of them based on inside-out objects
305 and other such things. Moose is different because it is not a new 
306 object system for Perl 5, but instead an extension of the existing 
307 object system.
308
309 Moose is built on top of L<Class::MOP>, which is a metaclass system 
310 for Perl 5. This means that Moose not only makes building normal 
311 Perl 5 objects better, but it also provides the power of metaclass 
312 programming.
313
314 =head2 Is this for real? Or is this just an experiment?
315
316 Moose is I<based> on the prototypes and experiments I did for the Perl 6
317 meta-model. However, Moose is B<NOT> an experiment/prototype; it is for B<real>. 
318
319 =head2 Is this ready for use in production? 
320
321 Yes, I believe that it is. 
322
323 I have two medium-to-large-ish web applications which use Moose heavily
324 and have been in production (without issue) for several months now. At 
325 $work, we are re-writing our core offering in it. And several people on 
326 #moose have been using it (in production) for several months now as well.
327
328 Of course, in the end, you need to make this call yourself. If you have 
329 any questions or concerns, please feel free to email me, or even the list 
330 or just stop by #moose and ask away.
331
332 =head2 Is Moose just Perl 6 in Perl 5?
333
334 No. While Moose is very much inspired by Perl 6, it is not itself Perl 6.
335 Instead, it is an OO system for Perl 5. I built Moose because I was tired of
336 writing the same old boring Perl 5 OO code, and drooling over Perl 6 OO. So
337 instead of switching to Ruby, I wrote Moose :)
338
339 =head1 BUILDING CLASSES WITH MOOSE
340
341 Moose makes every attempt to provide as much convenience as possible during
342 class construction/definition, but still stay out of your way if you want it
343 to. Here are a few items to note when building classes with Moose.
344
345 Unless specified with C<extends>, any class which uses Moose will 
346 inherit from L<Moose::Object>.
347
348 Moose will also manage all attributes (including inherited ones) that are
349 defined with C<has>. And (assuming you call C<new>, which is inherited from
350 L<Moose::Object>) this includes properly initializing all instance slots,
351 setting defaults where appropriate, and performing any type constraint checking
352 or coercion.
353
354 =head1 EXPORTED FUNCTIONS
355
356 Moose will export a number of functions into the class's namespace which 
357 may then be used to set up the class. These functions all work directly 
358 on the current class.
359
360 =over 4
361
362 =item B<meta>
363
364 This is a method which provides access to the current class's metaclass.
365
366 =item B<extends (@superclasses)>
367
368 This function will set the superclass(es) for the current class.
369
370 This approach is recommended instead of C<use base>, because C<use base> 
371 actually C<push>es onto the class's C<@ISA>, whereas C<extends> will 
372 replace it. This is important to ensure that classes which do not have 
373 superclasses still properly inherit from L<Moose::Object>.
374
375 =item B<with (@roles)>
376
377 This will apply a given set of C<@roles> to the local class. Role support 
378 is currently under heavy development; see L<Moose::Role> for more details.
379
380 =item B<has $name =E<gt> %options>
381
382 This will install an attribute of a given C<$name> into the current class. 
383 The C<%options> are the same as those provided by 
384 L<Class::MOP::Attribute>, in addition to the list below which are provided 
385 by Moose (L<Moose::Meta::Attribute> to be more specific):
386
387 =over 4
388
389 =item I<is =E<gt> 'rw'|'ro'>
390
391 The I<is> option accepts either I<rw> (for read/write) or I<ro> (for read 
392 only). These will create either a read/write accessor or a read-only 
393 accessor respectively, using the same name as the C<$name> of the attribute.
394
395 If you need more control over how your accessors are named, you can use the
396 I<reader>, I<writer> and I<accessor> options inherited from
397 L<Class::MOP::Attribute>.
398
399 =item I<isa =E<gt> $type_name>
400
401 The I<isa> option uses Moose's type constraint facilities to set up runtime 
402 type checking for this attribute. Moose will perform the checks during class 
403 construction, and within any accessors. The C<$type_name> argument must be a 
404 string. The string may be either a class name or a type defined using 
405 Moose's type definition features. (Refer to L<Moose::Util::TypeConstraints>
406 for information on how to define a new type).
407
408 =item I<coerce =E<gt> (1|0)>
409
410 This will attempt to use coercion with the supplied type constraint to change 
411 the value passed into any accessors or constructors. You B<must> have supplied 
412 a type constraint in order for this to work. See L<Moose::Cookbook::Recipe5>
413 for an example.
414
415 =item I<does =E<gt> $role_name>
416
417 This will accept the name of a role which the value stored in this attribute 
418 is expected to have consumed.
419
420 =item I<required =E<gt> (1|0)>
421
422 This marks the attribute as being required. This means a I<defined> value must be 
423 supplied during class construction, and the attribute may never be set to 
424 C<undef> with an accessor. 
425
426 =item I<weak_ref =E<gt> (1|0)>
427
428 This will tell the class to store the value of this attribute as a weakened
429 reference. If an attribute is a weakened reference, it B<cannot> also be
430 coerced.
431
432 =item I<lazy =E<gt> (1|0)>
433
434 This will tell the class to not create this slot until absolutely necessary. 
435 If an attribute is marked as lazy it B<must> have a default supplied.
436
437 =item I<auto_deref =E<gt> (1|0)>
438
439 This tells the accessor whether to automatically dereference the value returned. 
440 This is only legal if your C<isa> option is either C<ArrayRef> or C<HashRef>.
441
442 =item I<metaclass =E<gt> $metaclass_name>
443
444 This tells the class to use a custom attribute metaclass for this particular
445 attribute. Custom attribute metaclasses are useful for extending the
446 capabilities of the I<has> keyword: they are the simplest way to extend the MOP,
447 but they are still a fairly advanced topic and too much to cover here. I will
448 try and write a recipe on them soon.
449
450 The default behavior here is to just load C<$metaclass_name>; however, we also
451 have a way to alias to a shorter name. This will first look to see if
452 B<Moose::Meta::Attribute::Custom::$metaclass_name> exists. If it does, Moose
453 will then check to see if that has the method C<register_implemenetation>, which
454 should return the actual name of the custom attribute metaclass. If there is no
455 C<register_implemenetation> method, it will fall back to using
456 B<Moose::Meta::Attribute::Custom::$metaclass_name> as the metaclass name.
457
458 =item I<trigger =E<gt> $code>
459
460 The I<trigger> option is a CODE reference which will be called after the value of
461 the attribute is set. The CODE ref will be passed the instance itself, the
462 updated value and the attribute meta-object (this is for more advanced fiddling
463 and can typically be ignored). You B<cannot> have a trigger on a read-only
464 attribute.
465
466 =item I<handles =E<gt> ARRAY | HASH | REGEXP | ROLE | CODE>
467
468 The I<handles> option provides Moose classes with automated delegation features. 
469 This is a pretty complex and powerful option. It accepts many different option 
470 formats, each with its own benefits and drawbacks. 
471
472 B<NOTE:> This feature is no longer experimental, but it may still have subtle
473 bugs lurking in the deeper corners. If you think you have found a bug, you
474 probably have, so please report it to me right away. 
475
476 B<NOTE:> The class being delegated to does not need to be a Moose based class,
477 which is why this feature is especially useful when wrapping non-Moose classes.
478
479 All I<handles> option formats share the following traits:
480
481 You cannot override a locally defined method with a delegated method; an
482 exception will be thrown if you try. That is to say, if you define C<foo> in
483 your class, you cannot override it with a delegated C<foo>. This is almost never
484 something you would want to do, and if it is, you should do it by hand and not
485 use Moose.
486
487 You cannot override any of the methods found in Moose::Object, or the C<BUILD>
488 and C<DEMOLISH> methods. These will not throw an exception, but will silently
489 move on to the next method in the list. My reasoning for this is that you would
490 almost never want to do this, since it usually breaks your class. As with
491 overriding locally defined methods, if you do want to do this, you should do it
492 manually, not with Moose.
493
494 Below is the documentation for each option format:
495
496 =over 4
497
498 =item C<ARRAY>
499
500 This is the most common usage for I<handles>. You basically pass a list of 
501 method names to be delegated, and Moose will install a delegation method 
502 for each one.
503
504 =item C<HASH>
505
506 This is the second most common usage for I<handles>. Instead of a list of 
507 method names, you pass a HASH ref where each key is the method name you 
508 want installed locally, and its value is the name of the original method 
509 in the class being delegated to. 
510
511 This can be very useful for recursive classes like trees. Here is a 
512 quick example (soon to be expanded into a Moose::Cookbook::Recipe):
513
514   package Tree;
515   use Moose;
516   
517   has 'node' => (is => 'rw', isa => 'Any');
518   
519   has 'children' => (
520       is      => 'ro',
521       isa     => 'ArrayRef',
522       default => sub { [] }
523   );
524   
525   has 'parent' => (
526       is          => 'rw',
527       isa         => 'Tree',
528       is_weak_ref => 1,
529       handles     => {
530           parent_node => 'node',
531           siblings    => 'children', 
532       }
533   );
534
535 In this example, the Tree package gets C<parent_node> and C<siblings> methods,
536 which delegate to the C<node> and C<children> methods (respectively) of the Tree
537 instance stored in the C<parent> slot. 
538
539 =item C<REGEXP>
540
541 The regexp option works very similar to the ARRAY option, except that it builds 
542 the list of methods for you. It starts by collecting all possible methods of the 
543 class being delegated to, then filters that list using the regexp supplied here. 
544
545 B<NOTE:> An I<isa> option is required when using the regexp option format. This 
546 is so that we can determine (at compile time) the method list from the class. 
547 Without an I<isa> this is just not possible.
548
549 =item C<ROLE>
550
551 With the role option, you specify the name of a role whose "interface" then 
552 becomes the list of methods to handle. The "interface" can be defined as; the 
553 methods of the role and any required methods of the role. It should be noted 
554 that this does B<not> include any method modifiers or generated attribute 
555 methods (which is consistent with role composition).
556
557 =item C<CODE>
558
559 This is the option to use when you really want to do something funky. You should
560 only use it if you really know what you are doing, as it involves manual
561 metaclass twiddling.
562
563 This takes a code reference, which should expect two arguments. The first is the
564 attribute meta-object this I<handles> is attached to. The second is the
565 metaclass of the class being delegated to. It expects you to return a hash (not
566 a HASH ref) of the methods you want mapped. 
567
568 =back
569
570 =back
571
572 =item B<has +$name =E<gt> %options>
573
574 This is variation on the normal attibute creator C<has> which allows you to 
575 clone and extend an attribute from a superclass. Here is a quick example:
576
577   package Foo;
578   use Moose;
579   
580   has 'message' => (
581       is      => 'rw', 
582       isa     => 'Str',
583       default => 'Hello, I am a Foo'
584   );
585   
586   package My::Foo;
587   use Moose;
588   
589   extends 'Foo';
590   
591   has '+message' => (default => 'Hello I am My::Foo');
592
593 What is happening here is that B<My::Foo> is cloning the C<message> attribute
594 from its parent class B<Foo>, retaining the C<is =E<gt> 'rw'> and C<isa =E<gt>
595 'Str'> characteristics, but changing the value in C<default>.
596
597 This feature is restricted somewhat, so as to try and force at least I<some>
598 sanity into it. You are only allowed to change the following attributes:
599
600 =over 4
601
602 =item I<default> 
603
604 Change the default value of an attribute.
605
606 =item I<coerce> 
607
608 Change whether the attribute attempts to coerce a value passed to it.
609
610 =item I<required> 
611
612 Change if the attribute is required to have a value.
613
614 =item I<documentation>
615
616 Change the documentation string associated with the attribute.
617
618 =item I<lazy>
619
620 Change if the attribute lazily initializes the slot.
621
622 =item I<isa>
623
624 You I<are> allowed to change the type, B<if and only if> the new type is a
625 subtype of the old type.
626
627 =item I<handles>
628
629 You are allowed to B<add> a new C<handles> definition, but you are B<not> 
630 allowed to I<change> one. 
631
632 =back
633
634 =item B<before $name|@names =E<gt> sub { ... }>
635
636 =item B<after $name|@names =E<gt> sub { ... }>
637
638 =item B<around $name|@names =E<gt> sub { ... }>
639
640 This three items are syntactic sugar for the before, after, and around method
641 modifier features that L<Class::MOP> provides. More information on these may be
642 found in the L<Class::MOP::Class documentation|Class::MOP::Class/"Method
643 Modifiers"> for now.
644
645 =item B<super>
646
647 The keyword C<super> is a no-op when called outside of an C<override> method. In  
648 the context of an C<override> method, it will call the next most appropriate 
649 superclass method with the same arguments as the original method.
650
651 =item B<override ($name, &sub)>
652
653 An C<override> method is a way of explicitly saying "I am overriding this 
654 method from my superclass". You can call C<super> within this method, and 
655 it will work as expected. The same thing I<can> be accomplished with a normal 
656 method call and the C<SUPER::> pseudo-package; it is really your choice. 
657
658 =item B<inner>
659
660 The keyword C<inner>, much like C<super>, is a no-op outside of the context of 
661 an C<augment> method. You can think of C<inner> as being the inverse of 
662 C<super>; the details of how C<inner> and C<augment> work is best described in
663 the L<Moose::Cookbook>.
664
665 =item B<augment ($name, &sub)>
666
667 An C<augment> method, is a way of explicitly saying "I am augmenting this 
668 method from my superclass". Once again, the details of how C<inner> and 
669 C<augment> work is best described in the L<Moose::Cookbook>.
670
671 =item B<confess>
672
673 This is the C<Carp::confess> function, and exported here because I use it
674 all the time. This feature may change in the future, so you have been warned. 
675
676 =item B<blessed>
677
678 This is the C<Scalar::Util::blessed> function, it is exported here because I
679 use it all the time. It is highly recommended that this is used instead of 
680 C<ref> anywhere you need to test for an object's class name.
681
682 =back
683
684 =head1 UNIMPORTING FUNCTIONS
685
686 =head2 B<unimport>
687
688 Moose offers a way to remove the keywords it exports, through the C<unimport>
689 method. You simply have to say C<no Moose> at the bottom of your code for this
690 to work. Here is an example:
691
692     package Person;
693     use Moose;
694
695     has 'first_name' => (is => 'rw', isa => 'Str');
696     has 'last_name'  => (is => 'rw', isa => 'Str');
697     
698     sub full_name { 
699         my $self = shift;
700         $self->first_name . ' ' . $self->last_name 
701     }
702     
703     no Moose; # keywords are removed from the Person package    
704
705 =head1 CAVEATS
706
707 =over 4
708
709 =item *
710
711 It should be noted that C<super> and C<inner> B<cannot> be used in the same
712 method. However, they may be combined within the same class hierarchy; see
713 F<t/014_override_augment_inner_super.t> for an example.
714
715 The reason for this is that C<super> is only valid within a method 
716 with the C<override> modifier, and C<inner> will never be valid within an 
717 C<override> method. In fact, C<augment> will skip over any C<override> methods 
718 when searching for its appropriate C<inner>.
719
720 This might seem like a restriction, but I am of the opinion that keeping these
721 two features separate (yet interoperable) actually makes them easy to use, since
722 their behavior is then easier to predict. Time will tell whether I am right or
723 not (UPDATE: so far so good).
724
725 =back
726
727 =head1 ACKNOWLEDGEMENTS
728
729 =over 4
730
731 =item I blame Sam Vilain for introducing me to the insanity that is meta-models.
732
733 =item I blame Audrey Tang for then encouraging my meta-model habit in #perl6.
734
735 =item Without Yuval "nothingmuch" Kogman this module would not be possible, 
736 and it certainly wouldn't have this name ;P
737
738 =item The basis of the TypeContraints module was Rob Kinyon's idea 
739 originally, I just ran with it.
740
741 =item Thanks to mst & chansen and the whole #moose poose for all the 
742 early ideas/feature-requests/encouragement/bug-finding.
743
744 =item Thanks to David "Theory" Wheeler for meta-discussions and spelling fixes.
745
746 =back
747
748 =head1 SEE ALSO
749
750 =over 4
751
752 =item L<http://www.iinteractive.com/moose>
753
754 This is the official web home of Moose, it contains links to our public SVN repo
755 as well as links to a number of talks and articles on Moose and Moose related 
756 technologies. 
757
758 =item L<Class::MOP> documentation
759
760 =item The #moose channel on irc.perl.org
761
762 =item The Moose mailing list - moose@perl.org
763
764 =item Moose stats on ohloh.net - L<http://www.ohloh.net/projects/5788>
765
766 =back
767
768 =head2 Papers 
769
770 =over 4
771
772 =item L<http://www.cs.utah.edu/plt/publications/oopsla04-gff.pdf>
773
774 This paper (suggested by lbr on #moose) was what lead to the implementation 
775 of the C<super>/C<override> and C<inner>/C<augment> features. If you really 
776 want to understand them, I suggest you read this.
777
778 =back
779
780 =head1 BUGS
781
782 All complex software has bugs lurking in it, and this module is no 
783 exception. If you find a bug please either email me, or add the bug
784 to cpan-RT.
785
786 =head1 AUTHOR
787
788 Stevan Little E<lt>stevan@iinteractive.comE<gt>
789
790 B<with contributions from:>
791
792 Aankhen
793
794 Adam (Alias) Kennedy
795
796 Anders (Debolaz) Nor Berle
797
798 Nathan (kolibre) Gray
799
800 Christian (chansen) Hansen
801
802 Eric (ewilhelm) Wilhelm
803
804 Guillermo (groditi) Roditi
805
806 Jess (castaway) Robinson
807
808 Matt (mst) Trout
809
810 Robert (phaylon) Sedlacek
811
812 Robert (rlb3) Boone
813
814 Scott (konobi) McWhirter
815
816 Shlomi (rindolf) Fish
817
818 Yuval (nothingmuch) Kogman
819
820 Chris (perigrin) Prather
821
822 ... and many other #moose folks
823
824 =head1 COPYRIGHT AND LICENSE
825
826 Copyright 2006, 2007 by Infinity Interactive, Inc.
827
828 L<http://www.iinteractive.com>
829
830 This library is free software; you can redistribute it and/or modify
831 it under the same terms as Perl itself. 
832
833 =cut