automatically abbreviate generated class names if they are too long
[gitmo/Role-Tiny.git] / lib / Role / Tiny.pm
CommitLineData
ab3370e7 1package Role::Tiny;
2
119014a7 3sub _getglob { \*{$_[0]} }
5e03b55c 4sub _getstash { \%{"$_[0]::"} }
119014a7 5
b1eebd55 6use strict;
7use warnings FATAL => 'all';
ab3370e7 8
14f02cb6 9our $VERSION = '1.003001'; # 1.3.1
c334a5c1 10$VERSION = eval $VERSION;
11
ab3370e7 12our %INFO;
13our %APPLIED_TO;
1947330a 14our %COMPOSED;
836aea1b 15our %COMPOSITE_INFO;
ab3370e7 16
cf62c989 17# Module state workaround totally stolen from Zefram's Module::Runtime.
18
19BEGIN {
20 *_WORK_AROUND_BROKEN_MODULE_STATE = "$]" < 5.009 ? sub(){1} : sub(){0};
21}
22
23sub Role::Tiny::__GUARD__::DESTROY {
24 delete $INC{$_[0]->[0]} if @{$_[0]};
25}
5e03b55c 26
fb5074f6 27sub _load_module {
fb5074f6 28 (my $proto = $_[0]) =~ s/::/\//g;
cf62c989 29 $proto .= '.pm';
30 return 1 if $INC{$proto};
5e03b55c 31 # can't just ->can('can') because a sub-package Foo::Bar::Baz
32 # creates a 'Baz::' key in Foo::Bar's symbol table
33 return 1 if grep !/::$/, keys %{_getstash($_[0])||{}};
cf62c989 34 my $guard = _WORK_AROUND_BROKEN_MODULE_STATE
35 && bless([ $proto ], 'Role::Tiny::__GUARD__');
36 require $proto;
37 pop @$guard if _WORK_AROUND_BROKEN_MODULE_STATE;
fb5074f6 38 return 1;
39}
40
ab3370e7 41sub import {
42 my $target = caller;
a1164a0b 43 my $me = shift;
3ca7ff56 44 strict->import;
45 warnings->import(FATAL => 'all');
1ba11455 46 return if $INFO{$target}; # already exported into this package
8e8b04eb 47 $INFO{$target}{is_role} = 1;
ab3370e7 48 # get symbol table reference
76acfa6c 49 my $stash = _getstash($target);
ab3370e7 50 # install before/after/around subs
51 foreach my $type (qw(before after around)) {
5a247406 52 *{_getglob "${target}::${type}"} = sub {
7568ba55 53 require Class::Method::Modifiers;
ab3370e7 54 push @{$INFO{$target}{modifiers}||=[]}, [ $type => @_ ];
ef2da711 55 return;
ab3370e7 56 };
57 }
5a247406 58 *{_getglob "${target}::requires"} = sub {
ab3370e7 59 push @{$INFO{$target}{requires}||=[]}, @_;
ef2da711 60 return;
ab3370e7 61 };
5a247406 62 *{_getglob "${target}::with"} = sub {
836aea1b 63 $me->apply_roles_to_package($target, @_);
ef2da711 64 return;
96d3f07a 65 };
7b8177f8 66 # grab all *non-constant* (stash slot is not a scalarref) subs present
ab3370e7 67 # in the symbol table and store their refaddrs (no need to forcibly
f1ce2b19 68 # inflate constant subs into real subs) with a map to the coderefs in
69 # case of copying or re-use
70 my @not_methods = (map { *$_{CODE}||() } grep !ref($_), values %$stash);
12f8eb0b 71 @{$INFO{$target}{not_methods}={}}{@not_methods} = @not_methods;
ab3370e7 72 # a role does itself
73 $APPLIED_TO{$target} = { $target => undef };
74}
75
3d203c73 76sub role_application_steps {
c0978659 77 qw(_install_methods _check_requires _install_modifiers _copy_applied_list);
3d203c73 78}
79
836aea1b 80sub apply_single_role_to_package {
369a4c50 81 my ($me, $to, $role) = @_;
1947330a 82
fb5074f6 83 _load_module($role);
84
ab3370e7 85 die "This is apply_role_to_package" if ref($to);
3d203c73 86 die "${role} is not a Role::Tiny" unless $INFO{$role};
1947330a 87
3d203c73 88 foreach my $step ($me->role_application_steps) {
89 $me->$step($to, $role);
90 }
91}
1947330a 92
3d203c73 93sub _copy_applied_list {
94 my ($me, $to, $role) = @_;
1947330a 95 # copy our role list into the target's
96 @{$APPLIED_TO{$to}||={}}{keys %{$APPLIED_TO{$role}}} = ();
97}
98
99sub apply_roles_to_object {
100 my ($me, $object, @roles) = @_;
101 die "No roles supplied!" unless @roles;
102 my $class = ref($object);
103 bless($object, $me->create_class_with_roles($class, @roles));
104 $object;
105}
106
bc615098 107my $role_suffix = 'A000';
108sub _composite_name {
109 my ($me, $superclass, @roles) = @_;
110
111 my $new_name = join(
112 '__WITH__', $superclass, my $compose_name = join '__AND__', @roles
113 );
114
115 if (length($new_name) > 252) {
116 $new_name = $COMPOSED{abbrev}{$new_name}
117 ||= substr($new_name, 0, 250 - length $role_suffix).'__'.$role_suffix++;
118 }
119 return wantarray ? ($new_name, $compose_name) : $new_name;
120}
121
1947330a 122sub create_class_with_roles {
123 my ($me, $superclass, @roles) = @_;
124
fb5074f6 125 die "No roles supplied!" unless @roles;
126
f52b9821 127 _load_module($superclass);
2c580674 128 {
129 my %seen;
130 $seen{$_}++ for @roles;
131 if (my @dupes = grep $seen{$_} > 1, @roles) {
132 die "Duplicated roles: ".join(', ', @dupes);
133 }
134 }
135
bc615098 136 my ($new_name, $compose_name) = $me->_composite_name($superclass, @roles);
c69190f1 137
1947330a 138 return $new_name if $COMPOSED{class}{$new_name};
139
140 foreach my $role (@roles) {
fb5074f6 141 _load_module($role);
29dde8ba 142 die "${role} is not a Role::Tiny" unless $INFO{$role};
1947330a 143 }
144
786e5ba0 145 if ($] >= 5.010) {
7568ba55 146 require mro;
b1eebd55 147 } else {
7568ba55 148 require MRO::Compat;
b1eebd55 149 }
1947330a 150
1ad34a6f 151 my $composite_info = $me->_composite_info_for(@roles);
152 my %conflicts = %{$composite_info->{conflicts}};
471419f6 153 if (keys %conflicts) {
154 my $fail =
155 join "\n",
156 map {
157 "Method name conflict for '$_' between roles "
158 ."'".join(' and ', sort values %{$conflicts{$_}})."'"
159 .", cannot apply these simultaneously to an object."
160 } keys %conflicts;
161 die $fail;
162 }
163
76b67e35 164 my @composable = map $me->_composable_package_for($_), reverse @roles;
165
166 # some methods may not exist in the role, but get generated by
167 # _composable_package_for (Moose accessors via Moo). filter out anything
168 # provided by the composable packages, excluding the subs we generated to
169 # make modifiers work.
1ad34a6f 170 my @requires = grep {
171 my $method = $_;
172 !grep $_->can($method) && !$COMPOSED{role}{$_}{modifiers_only}{$method},
173 @composable
174 } @{$composite_info->{requires}};
1947330a 175
176 $me->_check_requires(
1ad34a6f 177 $superclass, $compose_name, \@requires
1947330a 178 );
1947330a 179
1ad34a6f 180 *{_getglob("${new_name}::ISA")} = [ @composable, $superclass ];
181
1947330a 182 @{$APPLIED_TO{$new_name}||={}}{
91037640 183 map keys %{$APPLIED_TO{$_}}, @roles
1947330a 184 } = ();
185
186 $COMPOSED{class}{$new_name} = 1;
187 return $new_name;
188}
189
92e1c5f8 190# preserved for compat, and apply_roles_to_package calls it to allow an
191# updated Role::Tiny to use a non-updated Moo::Role
192
836aea1b 193sub apply_role_to_package { shift->apply_single_role_to_package(@_) }
194
195sub apply_roles_to_package {
60dfe768 196 my ($me, $to, @roles) = @_;
197
92e1c5f8 198 return $me->apply_role_to_package($to, $roles[0]) if @roles == 1;
60dfe768 199
836aea1b 200 my %conflicts = %{$me->_composite_info_for(@roles)->{conflicts}};
8951a0b6 201 delete $conflicts{$_} for keys %{ $me->_concrete_methods_of($to) };
671b5a88 202 if (keys %conflicts) {
60dfe768 203 my $fail =
204 join "\n",
671b5a88 205 map {
206 "Due to a method name conflict between roles "
207 ."'".join(' and ', sort values %{$conflicts{$_}})."'"
208 .", the method '$_' must be implemented by '${to}'"
209 } keys %conflicts;
210 die $fail;
60dfe768 211 }
06b06c8e 212
213 # the if guard here is essential since otherwise we accidentally create
214 # a $INFO for something that isn't a Role::Tiny (or Moo::Role) because
215 # autovivification hates us and wants us to die()
216 if ($INFO{$to}) {
217 delete $INFO{$to}{methods}; # reset since we're about to add methods
218 }
2603ea93 219
220 # backcompat: allow subclasses to use apply_single_role_to_package
221 # to apply changes. set a local var so ours does nothing.
222 our %BACKCOMPAT_HACK;
223 if($me ne __PACKAGE__
224 and exists $BACKCOMPAT_HACK{$me} ? $BACKCOMPAT_HACK{$me} :
225 $BACKCOMPAT_HACK{$me} =
226 $me->can('role_application_steps')
227 == \&role_application_steps
228 && $me->can('apply_single_role_to_package')
229 != \&apply_single_role_to_package
230 ) {
3d203c73 231 foreach my $role (@roles) {
2603ea93 232 $me->apply_single_role_to_package($to, $role);
3d203c73 233 }
667f4e70 234 }
113e7b42 235 else {
236 foreach my $step ($me->role_application_steps) {
237 foreach my $role (@roles) {
238 $me->$step($to, $role);
239 }
2ff0bab0 240 }
ee81e663 241 }
671b5a88 242 $APPLIED_TO{$to}{join('|',@roles)} = 1;
243}
244
836aea1b 245sub _composite_info_for {
671b5a88 246 my ($me, @roles) = @_;
836aea1b 247 $COMPOSITE_INFO{join('|', sort @roles)} ||= do {
667f4e70 248 foreach my $role (@roles) {
249 _load_module($role);
250 }
671b5a88 251 my %methods;
252 foreach my $role (@roles) {
253 my $this_methods = $me->_concrete_methods_of($role);
254 $methods{$_}{$this_methods->{$_}} = $role for keys %$this_methods;
255 }
1ad34a6f 256 my %requires;
257 @requires{map @{$INFO{$_}{requires}||[]}, @roles} = ();
258 delete $requires{$_} for keys %methods;
671b5a88 259 delete $methods{$_} for grep keys(%{$methods{$_}}) == 1, keys %methods;
1ad34a6f 260 +{ conflicts => \%methods, requires => [keys %requires] }
671b5a88 261 };
60dfe768 262}
263
1947330a 264sub _composable_package_for {
265 my ($me, $role) = @_;
266 my $composed_name = 'Role::Tiny::_COMPOSABLE::'.$role;
267 return $composed_name if $COMPOSED{role}{$composed_name};
268 $me->_install_methods($composed_name, $role);
269 my $base_name = $composed_name.'::_BASE';
76b67e35 270 # force stash to exist so ->can doesn't complain
1ad34a6f 271 _getstash($base_name);
c49b0f72 272 # Not using _getglob, since setting @ISA via the typeglob breaks
273 # inheritance on 5.10.0 if the stash has previously been accessed an
274 # then a method called on the class (in that order!), which
275 # ->_install_methods (with the help of ->_install_does) ends up doing.
276 { no strict 'refs'; @{"${composed_name}::ISA"} = ( $base_name ); }
1947330a 277 my $modifiers = $INFO{$role}{modifiers}||[];
b1eebd55 278 my @mod_base;
1ad34a6f 279 my @modifiers = grep !$composed_name->can($_),
280 do { my %h; @h{map @{$_}[1..$#$_-1], @$modifiers} = (); keys %h };
281 foreach my $modified (@modifiers) {
b1eebd55 282 push @mod_base, "sub ${modified} { shift->next::method(\@_) }";
1947330a 283 }
385f5087 284 my $e;
59812c87 285 {
286 local $@;
287 eval(my $code = join "\n", "package ${base_name};", @mod_base);
385f5087 288 $e = "Evaling failed: $@\nTrying to eval:\n${code}" if $@;
59812c87 289 }
385f5087 290 die $e if $e;
3d203c73 291 $me->_install_modifiers($composed_name, $role);
1ad34a6f 292 $COMPOSED{role}{$composed_name} = {
293 modifiers_only => { map { $_ => 1 } @modifiers },
294 };
1947330a 295 return $composed_name;
296}
297
298sub _check_requires {
1ad34a6f 299 my ($me, $to, $name, $requires) = @_;
300 return unless my @requires = @{$requires||$INFO{$name}{requires}||[]};
1947330a 301 if (my @requires_fail = grep !$to->can($_), @requires) {
302 # role -> role, add to requires, role -> class, error out
303 if (my $to_info = $INFO{$to}) {
304 push @{$to_info->{requires}||=[]}, @requires_fail;
305 } else {
306 die "Can't apply ${name} to ${to} - missing ".join(', ', @requires_fail);
307 }
308 }
309}
310
4db3a740 311sub _concrete_methods_of {
312 my ($me, $role) = @_;
1947330a 313 my $info = $INFO{$role};
60dfe768 314 # grab role symbol table
76acfa6c 315 my $stash = _getstash($role);
12f8eb0b 316 # reverse so our keys become the values (captured coderefs) in case
317 # they got copied or re-used since
123a5a6e 318 my $not_methods = { reverse %{$info->{not_methods}||{}} };
eb8fcb2d 319 $info->{methods} ||= +{
60dfe768 320 # grab all code entries that aren't in the not_methods list
321 map {
322 my $code = *{$stash->{$_}}{CODE};
f1ce2b19 323 ( ! $code or exists $not_methods->{$code} ) ? () : ($_ => $code)
60dfe768 324 } grep !ref($stash->{$_}), keys %$stash
ab3370e7 325 };
4db3a740 326}
327
328sub methods_provided_by {
329 my ($me, $role) = @_;
330 die "${role} is not a Role::Tiny" unless my $info = $INFO{$role};
331 (keys %{$me->_concrete_methods_of($role)}, @{$info->{requires}||[]});
332}
333
334sub _install_methods {
335 my ($me, $to, $role) = @_;
336
337 my $info = $INFO{$role};
338
339 my $methods = $me->_concrete_methods_of($role);
1947330a 340
ab3370e7 341 # grab target symbol table
76acfa6c 342 my $stash = _getstash($to);
1947330a 343
ab3370e7 344 # determine already extant methods of target
345 my %has_methods;
346 @has_methods{grep
faa9ce11 347 +(ref($stash->{$_}) || *{$stash->{$_}}{CODE}),
ab3370e7 348 keys %$stash
349 } = ();
ab3370e7 350
1947330a 351 foreach my $i (grep !exists $has_methods{$_}, keys %$methods) {
ab3370e7 352 no warnings 'once';
5a247406 353 *{_getglob "${to}::${i}"} = $methods->{$i};
ab3370e7 354 }
fa89d582 355
356 $me->_install_does($to);
1947330a 357}
ab3370e7 358
1947330a 359sub _install_modifiers {
3d203c73 360 my ($me, $to, $name) = @_;
361 return unless my $modifiers = $INFO{$name}{modifiers};
dccea57d 362 if (my $info = $INFO{$to}) {
363 push @{$info->{modifiers}}, @{$modifiers||[]};
364 } else {
365 foreach my $modifier (@{$modifiers||[]}) {
366 $me->_install_single_modifier($to, @$modifier);
367 }
96d3f07a 368 }
ab3370e7 369}
370
3117a19e 371my $vcheck_error;
372
dccea57d 373sub _install_single_modifier {
374 my ($me, @args) = @_;
3117a19e 375 defined($vcheck_error) or $vcheck_error = do {
376 local $@;
377 eval { Class::Method::Modifiers->VERSION(1.05); 1 }
378 ? 0
379 : $@
380 };
381 $vcheck_error and die $vcheck_error;
dccea57d 382 Class::Method::Modifiers::install_modifier(@args);
383}
384
fa89d582 385my $FALLBACK = sub { 0 };
386sub _install_does {
387 my ($me, $to) = @_;
388
389 # only add does() method to classes
390 return if $INFO{$to};
391
392 # add does() only if they don't have one
393 *{_getglob "${to}::does"} = \&does_role unless $to->can('does');
394
211178ea 395 return if ($to->can('DOES') and $to->can('DOES') != (UNIVERSAL->can('DOES') || 0));
fa89d582 396
397 my $existing = $to->can('DOES') || $to->can('isa') || $FALLBACK;
398 my $new_sub = sub {
399 my ($proto, $role) = @_;
400 Role::Tiny::does_role($proto, $role) or $proto->$existing($role);
401 };
402 no warnings 'redefine';
403 *{_getglob "${to}::DOES"} = $new_sub;
404}
405
ab3370e7 406sub does_role {
390ac406 407 my ($proto, $role) = @_;
91037640 408 if ($] >= 5.010) {
409 require mro;
410 } else {
411 require MRO::Compat;
412 }
413 foreach my $class (@{mro::get_linear_isa(ref($proto)||$proto)}) {
414 return 1 if exists $APPLIED_TO{$class}{$role};
415 }
416 return 0;
ab3370e7 417}
418
fe2e95b1 419sub is_role {
420 my ($me, $role) = @_;
421 return !!$INFO{$role};
422}
423
ab3370e7 4241;
5febcf4d 425
7ce64c71 426=encoding utf-8
427
0b6e5fff 428=head1 NAME
429
70061353 430Role::Tiny - Roles. Like a nouvelle cuisine portion size slice of Moose.
5febcf4d 431
432=head1 SYNOPSIS
433
434 package Some::Role;
435
436 use Role::Tiny;
437
438 sub foo { ... }
439
440 sub bar { ... }
441
adcb6c3d 442 around baz => sub { ... }
443
5febcf4d 444 1;
445
446else where
447
448 package Some::Class;
449
a1164a0b 450 use Role::Tiny::With;
5febcf4d 451
452 # bar gets imported, but not foo
a1164a0b 453 with 'Some::Role';
5febcf4d 454
455 sub foo { ... }
456
adcb6c3d 457 # baz is wrapped in the around modifier by Class::Method::Modifiers
458 sub baz { ... }
459
5febcf4d 460 1;
461
adcb6c3d 462If you wanted attributes as well, look at L<Moo::Role>.
463
5febcf4d 464=head1 DESCRIPTION
465
466C<Role::Tiny> is a minimalist role composition tool.
467
468=head1 ROLE COMPOSITION
469
470Role composition can be thought of as much more clever and meaningful multiple
471inheritance. The basics of this implementation of roles is:
472
473=over 2
474
475=item *
476
477If a method is already defined on a class, that method will not be composed in
478from the role.
479
480=item *
481
482If a method that the role L</requires> to be implemented is not implemented,
483role application will fail loudly.
484
0d39f9d3 485=back
486
5febcf4d 487Unlike L<Class::C3>, where the B<last> class inherited from "wins," role
836aea1b 488composition is the other way around, where the class wins. If multiple roles
489are applied in a single call (single with statement), then if any of their
490provided methods clash, an exception is raised unless the class provides
491a method since this conflict indicates a potential problem.
5febcf4d 492
5febcf4d 493=head1 IMPORTED SUBROUTINES
494
495=head2 requires
496
497 requires qw(foo bar);
498
499Declares a list of methods that must be defined to compose role.
500
501=head2 with
502
503 with 'Some::Role1';
836aea1b 504
505 with 'Some::Role1', 'Some::Role2';
506
507Composes another role into the current role (or class via L<Role::Tiny::With>).
508
509If you have conflicts and want to resolve them in favour of Some::Role1 you
510can instead write:
511
512 with 'Some::Role1';
5febcf4d 513 with 'Some::Role2';
514
836aea1b 515If you have conflicts and want to resolve different conflicts in favour of
516different roles, please refactor your codebase.
5febcf4d 517
518=head2 before
519
520 before foo => sub { ... };
521
522See L<< Class::Method::Modifiers/before method(s) => sub { ... } >> for full
523documentation.
524
adcb6c3d 525Note that since you are not required to use method modifiers,
526L<Class::Method::Modifiers> is lazily loaded and we do not declare it as
527a dependency. If your L<Role::Tiny> role uses modifiers you must depend on
528both L<Class::Method::Modifiers> and L<Role::Tiny>.
529
5febcf4d 530=head2 around
531
532 around foo => sub { ... };
533
534See L<< Class::Method::Modifiers/around method(s) => sub { ... } >> for full
535documentation.
536
adcb6c3d 537Note that since you are not required to use method modifiers,
538L<Class::Method::Modifiers> is lazily loaded and we do not declare it as
539a dependency. If your L<Role::Tiny> role uses modifiers you must depend on
540both L<Class::Method::Modifiers> and L<Role::Tiny>.
541
5febcf4d 542=head2 after
543
544 after foo => sub { ... };
545
546See L<< Class::Method::Modifiers/after method(s) => sub { ... } >> for full
547documentation.
548
adcb6c3d 549Note that since you are not required to use method modifiers,
550L<Class::Method::Modifiers> is lazily loaded and we do not declare it as
551a dependency. If your L<Role::Tiny> role uses modifiers you must depend on
552both L<Class::Method::Modifiers> and L<Role::Tiny>.
553
ec28e16b 554=head1 SUBROUTINES
555
556=head2 does_role
557
558 if (Role::Tiny::does_role($foo, 'Some::Role')) {
559 ...
560 }
561
562Returns true if class has been composed with role.
563
564This subroutine is also installed as ->does on any class a Role::Tiny is
565composed into unless that class already has an ->does method, so
566
567 if ($foo->does('Some::Role')) {
568 ...
569 }
570
fa89d582 571will work for classes but to test a role, one must use ::does_role directly.
572
573Additionally, Role::Tiny will override the standard Perl C<DOES> method
574for your class. However, if C<any> class in your class' inheritance
8159d057 575hierarchy provides C<DOES>, then Role::Tiny will not override it.
ec28e16b 576
577=head1 METHODS
578
579=head2 apply_roles_to_package
580
581 Role::Tiny->apply_roles_to_package(
582 'Some::Package', 'Some::Role', 'Some::Other::Role'
583 );
584
585Composes role with package. See also L<Role::Tiny::With>.
586
587=head2 apply_roles_to_object
588
589 Role::Tiny->apply_roles_to_object($foo, qw(Some::Role1 Some::Role2));
590
591Composes roles in order into object directly. Object is reblessed into the
592resulting class.
593
594=head2 create_class_with_roles
595
596 Role::Tiny->create_class_with_roles('Some::Base', qw(Some::Role1 Some::Role2));
597
598Creates a new class based on base, with the roles composed into it in order.
599New class is returned.
600
fe2e95b1 601=head2 is_role
602
603 Role::Tiny->is_role('Some::Role1')
604
605Returns true if the given package is a role.
606
adcb6c3d 607=head1 SEE ALSO
608
609L<Role::Tiny> is the attribute-less subset of L<Moo::Role>; L<Moo::Role> is
610a meta-protocol-less subset of the king of role systems, L<Moose::Role>.
611
612If you don't want method modifiers and do want to be forcibly restricted
613to a single role application per class, Ovid's L<Role::Basic> exists. But
259ce3a0 614Stevan Little (the L<Moose> author) and I don't find the additional
615restrictions to be amazingly helpful in most cases; L<Role::Basic>'s choices
616are more a guide to what you should prefer doing, to our mind, rather than
617something that needs to be enforced.
adcb6c3d 618
c334a5c1 619=head1 AUTHOR
620
621mst - Matt S. Trout (cpan:MSTROUT) <mst@shadowcat.co.uk>
622
623=head1 CONTRIBUTORS
624
625dg - David Leadbeater (cpan:DGL) <dgl@dgl.cx>
626
627frew - Arthur Axel "fREW" Schmidt (cpan:FREW) <frioux@gmail.com>
628
629hobbs - Andrew Rodland (cpan:ARODLAND) <arodland@cpan.org>
630
631jnap - John Napiorkowski (cpan:JJNAPIORK) <jjn1056@yahoo.com>
632
633ribasushi - Peter Rabbitson (cpan:RIBASUSHI) <ribasushi@cpan.org>
634
635chip - Chip Salzenberg (cpan:CHIPS) <chip@pobox.com>
636
637ajgb - Alex J. G. Burzyński (cpan:AJGB) <ajgb@cpan.org>
638
639doy - Jesse Luehrs (cpan:DOY) <doy at tozt dot net>
640
641perigrin - Chris Prather (cpan:PERIGRIN) <chris@prather.org>
642
ec28e16b 643Mithaldu - Christian Walde (cpan:MITHALDU) <walde.christian@googlemail.com>
644
91037640 645ilmari - Dagfinn Ilmari Mannsåker (cpan:ILMARI) <ilmari@ilmari.org>
646
fa89d582 647tobyink - Toby Inkster (cpan:TOBYINK) <tobyink@cpan.org>
648
c334a5c1 649=head1 COPYRIGHT
40f3e3aa 650
c334a5c1 651Copyright (c) 2010-2012 the Role::Tiny L</AUTHOR> and L</CONTRIBUTORS>
652as listed above.
40f3e3aa 653
c334a5c1 654=head1 LICENSE
40f3e3aa 655
c334a5c1 656This library is free software and may be distributed under the same terms
657as perl itself.
40f3e3aa 658
659=cut