summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2010-06-14 03:21:42 -0500
committerJesse Luehrs <doy@tozt.net>2010-06-14 03:21:42 -0500
commitb6f9cf0cd8b90c31a024581d524cf513a5446c93 (patch)
treea8dcdf7fefa4eb50973263dda9d46a3b46c872e2 /lib
parent90bf809d0662a2f87d63a4453e0cd74c101418a7 (diff)
downloadcarp-always-color-b6f9cf0cd8b90c31a024581d524cf513a5446c93.tar.gz
carp-always-color-b6f9cf0cd8b90c31a024581d524cf513a5446c93.zip
update dzil (and other packaging) stuff
Diffstat (limited to 'lib')
-rw-r--r--lib/Carp/Always/Color.pm52
-rw-r--r--lib/Carp/Always/Color/HTML.pm18
-rw-r--r--lib/Carp/Always/Color/Term.pm18
3 files changed, 3 insertions, 85 deletions
diff --git a/lib/Carp/Always/Color.pm b/lib/Carp/Always/Color.pm
index 6aeb61d..a482001 100644
--- a/lib/Carp/Always/Color.pm
+++ b/lib/Carp/Always/Color.pm
@@ -1,6 +1,7 @@
package Carp::Always::Color;
use strict;
use warnings;
+# ABSTRACT: Carp::Always, but with color
BEGIN {
if (-t *STDERR) {
@@ -11,10 +12,6 @@ BEGIN {
}
}
-=head1 NAME
-
-Carp::Always::Color - Carp::Always, but with color
-
=head1 SYNOPSIS
use Carp::Always::Color;
@@ -32,57 +29,10 @@ messages are being sent to a terminal, it colors them with terminal escape
codes, otherwise it colors them with HTML (ideas for more intelligent behavior
here are welcome).
-=head1 BUGS
-
-No known bugs.
-
-Please report any bugs through RT: email
-C<bug-carp-always-color at rt.cpan.org>, or browse to
-L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Carp-Always-Color>.
-
=head1 SEE ALSO
L<Carp::Always>
-=head1 SUPPORT
-
-You can find this documentation for this module with the perldoc command.
-
- perldoc Carp::Always::Color
-
-You can also look for information at:
-
-=over 4
-
-=item * AnnoCPAN: Annotated CPAN documentation
-
-L<http://annocpan.org/dist/Carp-Always-Color>
-
-=item * CPAN Ratings
-
-L<http://cpanratings.perl.org/d/Carp-Always-Color>
-
-=item * RT: CPAN's request tracker
-
-L<http://rt.cpan.org/NoAuth/Bugs.html?Dist=Carp-Always-Color>
-
-=item * Search CPAN
-
-L<http://search.cpan.org/dist/Carp-Always-Color>
-
-=back
-
-=head1 AUTHOR
-
- Jesse Luehrs <doy at tozt dot net>
-
-=head1 COPYRIGHT AND LICENSE
-
-This software is copyright (c) 2010 by Jesse Luehrs.
-
-This is free software; you can redistribute it and/or modify it under
-the same terms as perl itself.
-
=cut
1;
diff --git a/lib/Carp/Always/Color/HTML.pm b/lib/Carp/Always/Color/HTML.pm
index 788e69c..3c17d21 100644
--- a/lib/Carp/Always/Color/HTML.pm
+++ b/lib/Carp/Always/Color/HTML.pm
@@ -2,10 +2,7 @@ package Carp::Always::Color::HTML;
use strict;
use warnings;
use Carp::Always;
-
-=head1 NAME
-
-Carp::Always::Color::HTML - Carp::Always, but with HTML color
+# ABSTRACT: Carp::Always, but with HTML color
=head1 SYNOPSIS
@@ -53,17 +50,4 @@ END {
@SIG{qw(__DIE__ __WARN__)} = @OLD_SIG{qw(__DIE__ __WARN__)};
}
-=head1 AUTHOR
-
- Jesse Luehrs <doy at tozt dot net>
-
-=head1 COPYRIGHT AND LICENSE
-
-This software is copyright (c) 2010 by Jesse Luehrs.
-
-This is free software; you can redistribute it and/or modify it under
-the same terms as perl itself.
-
-=cut
-
1;
diff --git a/lib/Carp/Always/Color/Term.pm b/lib/Carp/Always/Color/Term.pm
index 6f5eceb..3b3ce2c 100644
--- a/lib/Carp/Always/Color/Term.pm
+++ b/lib/Carp/Always/Color/Term.pm
@@ -2,10 +2,7 @@ package Carp::Always::Color::Term;
use strict;
use warnings;
use Carp::Always;
-
-=head1 NAME
-
-Carp::Always::Color::Term - Carp::Always, but with terminal color
+# ABSTRACT: Carp::Always, but with terminal color
=head1 SYNOPSIS
@@ -53,17 +50,4 @@ END {
@SIG{qw(__DIE__ __WARN__)} = @OLD_SIG{qw(__DIE__ __WARN__)};
}
-=head1 AUTHOR
-
- Jesse Luehrs <doy at tozt dot net>
-
-=head1 COPYRIGHT AND LICENSE
-
-This software is copyright (c) 2010 by Jesse Luehrs.
-
-This is free software; you can redistribute it and/or modify it under
-the same terms as perl itself.
-
-=cut
-
1;