From: Stevan Little Date: Thu, 31 May 2007 04:27:58 +0000 (+0000) Subject: 0.04 X-Git-Tag: 0_06~3 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=b3cb70385763ff1067a42fa7e470177bef3485e8;p=gitmo%2FMoose-Autobox.git 0.04 --- diff --git a/Changes b/Changes index 3c0dacd..7ac79b1 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,6 @@ Revision history for Perl extension Moose::Autobox -0.04 +0.04 Thurs. May 31, 2007 * Moose::Autobox::Hash - added method for shallow hash merging diff --git a/lib/Moose/Autobox.pm b/lib/Moose/Autobox.pm index e33ae6c..6ca3141 100644 --- a/lib/Moose/Autobox.pm +++ b/lib/Moose/Autobox.pm @@ -7,7 +7,7 @@ use warnings; use Carp qw(confess); use Scalar::Util (); -our $VERSION = '0.03'; +our $VERSION = '0.04'; use base 'autobox'; @@ -153,9 +153,17 @@ to cpan-RT. Stevan Little Estevan@iinteractive.comE +B + +Anders (Debolaz) Nor Berle + +Matt (mst) Trout + +renormalist + =head1 COPYRIGHT AND LICENSE -Copyright 2006 by Infinity Interactive, Inc. +Copyright 2006-2007 by Infinity Interactive, Inc. L diff --git a/lib/Moose/Autobox/Array.pm b/lib/Moose/Autobox/Array.pm index ab88261..ac7cb71 100644 --- a/lib/Moose/Autobox/Array.pm +++ b/lib/Moose/Autobox/Array.pm @@ -268,7 +268,7 @@ Stevan Little Estevan@iinteractive.comE =head1 COPYRIGHT AND LICENSE -Copyright 2006 by Infinity Interactive, Inc. +Copyright 2006-2007 by Infinity Interactive, Inc. L diff --git a/lib/Moose/Autobox/Code.pm b/lib/Moose/Autobox/Code.pm index c2e33a1..5a6ef60 100644 --- a/lib/Moose/Autobox/Code.pm +++ b/lib/Moose/Autobox/Code.pm @@ -136,7 +136,7 @@ Stevan Little Estevan@iinteractive.comE =head1 COPYRIGHT AND LICENSE -Copyright 2006 by Infinity Interactive, Inc. +Copyright 2006-2007 by Infinity Interactive, Inc. L diff --git a/lib/Moose/Autobox/Defined.pm b/lib/Moose/Autobox/Defined.pm index c637f3b..a831264 100644 --- a/lib/Moose/Autobox/Defined.pm +++ b/lib/Moose/Autobox/Defined.pm @@ -57,7 +57,7 @@ Stevan Little Estevan@iinteractive.comE =head1 COPYRIGHT AND LICENSE -Copyright 2006 by Infinity Interactive, Inc. +Copyright 2006-2007 by Infinity Interactive, Inc. L diff --git a/lib/Moose/Autobox/Hash.pm b/lib/Moose/Autobox/Hash.pm index 96cbe52..ba2eb21 100644 --- a/lib/Moose/Autobox/Hash.pm +++ b/lib/Moose/Autobox/Hash.pm @@ -126,11 +126,9 @@ to cpan-RT. Stevan Little Estevan@iinteractive.comE -Anders Nor Berle Edebolaz@gmail.comE - =head1 COPYRIGHT AND LICENSE -Copyright 2006 by Infinity Interactive, Inc. +Copyright 2006-2007 by Infinity Interactive, Inc. L diff --git a/lib/Moose/Autobox/Indexed.pm b/lib/Moose/Autobox/Indexed.pm index 2ea4bec..dfdbafd 100644 --- a/lib/Moose/Autobox/Indexed.pm +++ b/lib/Moose/Autobox/Indexed.pm @@ -67,7 +67,7 @@ Stevan Little Estevan@iinteractive.comE =head1 COPYRIGHT AND LICENSE -Copyright 2006 by Infinity Interactive, Inc. +Copyright 2006-2007 by Infinity Interactive, Inc. L diff --git a/lib/Moose/Autobox/Item.pm b/lib/Moose/Autobox/Item.pm index af4bfd0..0364589 100644 --- a/lib/Moose/Autobox/Item.pm +++ b/lib/Moose/Autobox/Item.pm @@ -1,7 +1,7 @@ package Moose::Autobox::Item; use Moose::Role 'requires'; -our $VERSION = '0.01'; +our $VERSION = '0.02'; requires 'defined'; @@ -11,7 +11,7 @@ sub dump { return Data::Dumper::Dumper($self); } -*perl = *dump; +*perl = \&dump; 1; @@ -67,7 +67,7 @@ Stevan Little Estevan@iinteractive.comE =head1 COPYRIGHT AND LICENSE -Copyright 2006 by Infinity Interactive, Inc. +Copyright 2006-2007 by Infinity Interactive, Inc. L diff --git a/lib/Moose/Autobox/List.pm b/lib/Moose/Autobox/List.pm index 43861ee..c54b305 100644 --- a/lib/Moose/Autobox/List.pm +++ b/lib/Moose/Autobox/List.pm @@ -102,7 +102,7 @@ Stevan Little Estevan@iinteractive.comE =head1 COPYRIGHT AND LICENSE -Copyright 2006 by Infinity Interactive, Inc. +Copyright 2006-2007 by Infinity Interactive, Inc. L diff --git a/lib/Moose/Autobox/Number.pm b/lib/Moose/Autobox/Number.pm index 7ee9586..60d7030 100644 --- a/lib/Moose/Autobox/Number.pm +++ b/lib/Moose/Autobox/Number.pm @@ -39,7 +39,7 @@ Stevan Little Estevan@iinteractive.comE =head1 COPYRIGHT AND LICENSE -Copyright 2006 by Infinity Interactive, Inc. +Copyright 2006-2007 by Infinity Interactive, Inc. L diff --git a/lib/Moose/Autobox/Ref.pm b/lib/Moose/Autobox/Ref.pm index 579f4cc..59be383 100644 --- a/lib/Moose/Autobox/Ref.pm +++ b/lib/Moose/Autobox/Ref.pm @@ -1,7 +1,7 @@ package Moose::Autobox::Ref; use Moose::Role 'with'; -our $VERSION = '0.02'; +our $VERSION = '0.03'; with 'Moose::Autobox::Defined'; @@ -39,7 +39,7 @@ Stevan Little Estevan@iinteractive.comE =head1 COPYRIGHT AND LICENSE -Copyright 2006 by Infinity Interactive, Inc. +Copyright 2006-2007 by Infinity Interactive, Inc. L diff --git a/lib/Moose/Autobox/Scalar.pm b/lib/Moose/Autobox/Scalar.pm index 9236510..63a1d03 100644 --- a/lib/Moose/Autobox/Scalar.pm +++ b/lib/Moose/Autobox/Scalar.pm @@ -47,7 +47,7 @@ Stevan Little Estevan@iinteractive.comE =head1 COPYRIGHT AND LICENSE -Copyright 2006 by Infinity Interactive, Inc. +Copyright 2006-2007 by Infinity Interactive, Inc. L diff --git a/lib/Moose/Autobox/String.pm b/lib/Moose/Autobox/String.pm index 88b1bf4..e7037f5 100644 --- a/lib/Moose/Autobox/String.pm +++ b/lib/Moose/Autobox/String.pm @@ -86,11 +86,9 @@ to cpan-RT. Stevan Little Estevan@iinteractive.comE -Anders Nor Berle Edebolaz@gmail.comE - =head1 COPYRIGHT AND LICENSE -Copyright 2006 by Infinity Interactive, Inc. +Copyright 2006-2007 by Infinity Interactive, Inc. L diff --git a/lib/Moose/Autobox/Undef.pm b/lib/Moose/Autobox/Undef.pm index c78e76e..a09820e 100644 --- a/lib/Moose/Autobox/Undef.pm +++ b/lib/Moose/Autobox/Undef.pm @@ -54,7 +54,7 @@ Stevan Little Estevan@iinteractive.comE =head1 COPYRIGHT AND LICENSE -Copyright 2006 by Infinity Interactive, Inc. +Copyright 2006-2007 by Infinity Interactive, Inc. L diff --git a/lib/Moose/Autobox/Value.pm b/lib/Moose/Autobox/Value.pm index ab142f4..43a9dd8 100644 --- a/lib/Moose/Autobox/Value.pm +++ b/lib/Moose/Autobox/Value.pm @@ -53,7 +53,7 @@ Stevan Little Estevan@iinteractive.comE =head1 COPYRIGHT AND LICENSE -Copyright 2006 by Infinity Interactive, Inc. +Copyright 2006-2007 by Infinity Interactive, Inc. L