dzilify and stuff
[p5sagit/Try-Tiny.git] / lib / Try / Tiny.pm
index 061e734..c3c74a9 100644 (file)
@@ -1,11 +1,10 @@
 package Try::Tiny;
+use 5.006;
+# ABSTRACT: minimal try/catch with proper preservation of $@
 
 use strict;
 use warnings;
 
-our $VERSION = "0.12";
-$VERSION = eval $VERSION if $VERSION =~ /_/;
-
 use base 'Exporter';
 our @EXPORT = our @EXPORT_OK = qw(try catch finally);
 
@@ -161,10 +160,6 @@ __END__
 
 =pod
 
-=head1 NAME
-
-Try::Tiny - minimal try/catch with proper preservation of $@
-
 =head1 SYNOPSIS
 
 You can use Try::Tiny's C<try> and C<catch> to expect and handle exceptional
@@ -612,15 +607,5 @@ L<http://web.archive.org/web/20100305133605/http://nothingmuch.woobling.org/talk
 
 L<http://github.com/nothingmuch/try-tiny/>
 
-=head1 AUTHOR
-
-Yuval Kogman E<lt>nothingmuch@woobling.orgE<gt>
-
-=head1 COPYRIGHT
-
-  Copyright (c) 2009 Yuval Kogman. All rights reserved.
-  This program is free software; you can redistribute
-  it and/or modify it under the terms of the MIT license.
-
 =cut