From: Stevan Little Date: Thu, 17 Aug 2006 17:15:47 +0000 (+0000) Subject: 0.03 release X-Git-Tag: 0_03^0 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=68a5f1ac75a933e5a844c23243fc386816bdcf85;hp=19b62758d344df4fa5cb91cd04d65fbb0b316934;p=gitmo%2FMoose-Autobox.git 0.03 release --- diff --git a/Changes b/Changes index f1fdad3..87fb8b8 100644 --- a/Changes +++ b/Changes @@ -1,15 +1,20 @@ Revision history for Perl extension Moose::Autobox -0.03 - - added &mixin_additional_role to allow mixing in of - additional functionality - - - added new examples for units - - ported from the Pugs examples/units directory +0.03 Thurs. Aug 17, 2006 + + * Moose::Autobox + - we now inherit from autobox, now we don't have to + do that ugly eval thing or manually load autobox + when we want to use this module. + - added &mixin_additional_role to allow mixing in of + additional functionality (see examples/unit/*) * Moose::Autobox::Code - added the Y and U combinators + + added new examples for units + - ported from the Pugs examples/units directory + 0.02 Sat. June 24, 2006 - fixed Moose::Autobox so that PAUSE won't try to index SCALAR, ARRAY, HASH and CODE. diff --git a/examples/tic_tac_toe.pl b/examples/tic_tac_toe.pl index 591ec82..9b29111 100644 --- a/examples/tic_tac_toe.pl +++ b/examples/tic_tac_toe.pl @@ -67,7 +67,7 @@ while ($board->any eq '.') { =head1 NAME -tic_tac_toe.p6 - Tic-Tac-Toe +tic_tac_toe.pl - Tic-Tac-Toe =head1 DESCRIPTION diff --git a/examples/units/bytes.pl b/examples/units/bytes.pl index bea2992..615976d 100644 --- a/examples/units/bytes.pl +++ b/examples/units/bytes.pl @@ -6,7 +6,8 @@ use warnings; use Moose::Autobox; { - package Units::Bytes; + package # hide from PAUSE + Units::Bytes; use Moose::Role; use Moose::Autobox; @@ -35,3 +36,33 @@ print "2 megabytes are " . 2->megabytes . " bytes"; print "1 gigabyte is " . 1->gigabyte . " bytes"; print "2 terabyes are " . 2->terabytes . " bytes"; +=pod + +=head1 NAME + +Unit::Bytes + +=head1 SYNOPSIS + + Moose::Autobox->mixin_additional_role(SCALAR => 'Units::Bytes'); + + print "5 kilobytes are " . 5->kilobytes . " bytes"; + print "2 megabytes are " . 2->megabytes . " bytes"; + print "1 gigabyte is " . 1->gigabyte . " bytes"; + print "2 terabyes are " . 2->terabytes . " bytes"; + +=head1 DESCRIPTION + +This is a Moose::Autobox port of the perl6 vmethods example. + +=head1 AUTHOR + +Stevan Little, Estevan@iinteractive.comE + +=head1 ACKNOLEDGEMENTS + +This code was ported from the version in the Pugs +examples/vmethods/ directory. See that for original author +information. + +=cut diff --git a/examples/units/time.pl b/examples/units/time.pl index 7bb1fb0..2253565 100644 --- a/examples/units/time.pl +++ b/examples/units/time.pl @@ -6,7 +6,8 @@ use warnings; use Moose::Autobox; { - package Units::Time; + package # hide me from PAUSE + Units::Time; use Moose::Role; use Moose::Autobox; @@ -60,4 +61,33 @@ my $one_week_ago = 1->week->ago; print "1 day until 1 week ago : " . 1->day->til($one_week_ago)->as_string; print "2 years since 1 week ago : " . 2->years->since($one_week_ago)->as_string; +=pod +=head1 NAME + +Unit::Time + +=head1 SYNOPSIS + + Moose::Autobox->mixin_additional_role(SCALAR => 'Units::Time'); + + print "2 days ago was : " . 2->days->ago->as_string; + print "3 weeks from now will be : " . 3->weeks->from_now->as_string; + print "1 day until 1 week ago : " . 1->day->til(1->week->ago)->as_string; + print "2 years since 1 week ago : " . 2->years->since(1->week->ago)->as_string; + +=head1 DESCRIPTION + +This is a Moose::Autobox port of the perl6 vmethods example. + +=head1 AUTHOR + +Stevan Little, Estevan@iinteractive.comE + +=head1 ACKNOLEDGEMENTS + +This code was ported from the version in the Pugs +examples/vmethods/ directory. See that for original author +information. + +=cut