[Rt-commit] r2985 - in Class-ReturnValue: . trunk/lib/Class
jesse at bestpractical.com
jesse at bestpractical.com
Mon May 30 17:01:28 EDT 2005
Author: jesse
Date: Mon May 30 17:01:27 2005
New Revision: 2985
Modified:
Class-ReturnValue/ (props changed)
Class-ReturnValue/trunk/lib/Class/ReturnValue.pm
Log:
r18005 at hualien: jesse | 2005-05-30 16:56:50 -0400
* 0.53, note similarity to Contextual::Return
Modified: Class-ReturnValue/trunk/lib/Class/ReturnValue.pm
==============================================================================
--- Class-ReturnValue/trunk/lib/Class/ReturnValue.pm (original)
+++ Class-ReturnValue/trunk/lib/Class/ReturnValue.pm Mon May 30 17:01:27 2005
@@ -1,4 +1,5 @@
-# Copyright (c) 2002 Jesse Vincent (jesse at bestpractical.com)
+use warnings;
+use strict;
package Class::ReturnValue;
@@ -79,7 +80,7 @@
use Exporter;
-use vars qw/$VERSION @EXPORT/;
+use vars qw/$VERSION @EXPORT @ISA/;
@ISA = qw/Exporter/;
@EXPORT = qw /&return_value/;
@@ -88,7 +89,7 @@
use Data::Dumper;
-$VERSION = '0.52';
+$VERSION = '0.53';
use overload 'bool' => \&error_condition;
@@ -408,7 +409,7 @@
=head1 COPYRIGHT
- Copyright (c) 2002, Jesse Vincent <jesse at bestpractical.com>
+ Copyright (c) 2002,2003,2005 Jesse Vincent <jesse at bestpractical.com>
You may use, modify, fold, spindle or mutilate this module under
the same terms as perl itself.
@@ -420,6 +421,9 @@
Error, Exception, Exceptions, Exceptions::Class
+ You might also want to look at Contextual::Return, another implementation
+ of the same concept as this module.
+
=cut
1;
More information about the Rt-commit
mailing list