summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2010-11-03 00:15:41 -0500
committerJesse Luehrs <doy@tozt.net>2010-11-03 00:20:20 -0500
commit76ec339584fdeb5acd9f5cef25bb5b29dd897741 (patch)
tree6128b09c4a7ecd0bc5662651fce90b654c958e69
parent284b6956fce9f0b0ea04b1e4c7f1d9812ea8958a (diff)
downloadapp-termcast-0.08.tar.gz
app-termcast-0.08.zip
more dzil tweaks0.08
-rw-r--r--bin/stream_ttyrec17
-rw-r--r--bin/termcast17
-rw-r--r--dist.ini2
3 files changed, 5 insertions, 31 deletions
diff --git a/bin/stream_ttyrec b/bin/stream_ttyrec
index 4f55cb2..6998974 100644
--- a/bin/stream_ttyrec
+++ b/bin/stream_ttyrec
@@ -4,10 +4,8 @@ use warnings;
use App::Termcast;
eval { require Term::TtyRec::Plus }
|| die "This script requires the Term::TtyRec::Plus module";
-
-=head1 NAME
-
-stream_ttyrec - play a ttyrec to a termcast channel
+# PODNAME: stream_ttyrec
+# ABSTRACT: play a ttyrec to a termcast channel
=head1 SYNOPSIS
@@ -37,14 +35,3 @@ while (my $frame = $ttyrec->next_frame) {
select undef, undef, undef, $frame->{diff};
$tc->write_to_termcast($frame->{data});
}
-
-=head1 AUTHOR
-
- Jesse Luehrs <doy at tozt dot net>
-
-=head1 COPYRIGHT AND LICENSE
-
-This software is copyright (c) 2009-2010 by Jesse Luehrs.
-
-This is free software; you can redistribute it and/or modify it under
-the same terms as perl itself.
diff --git a/bin/termcast b/bin/termcast
index d6e41a6..fcf7bc4 100644
--- a/bin/termcast
+++ b/bin/termcast
@@ -2,10 +2,8 @@
use strict;
use warnings;
use App::Termcast;
-
-=head1 NAME
-
-termcast - broadcast your terminal sessions for remote viewing
+# PODNAME: termcast
+# ABSTRACT: broadcast your terminal sessions for remote viewing
=head1 SYNOPSIS
@@ -22,14 +20,3 @@ my $tc = App::Termcast->new_with_options;
my @argv = @{ $tc->extra_argv };
push @argv, ($ENV{SHELL} || '/bin/sh') if !@argv;
App::Termcast->new_with_options->run(@argv);
-
-=head1 AUTHOR
-
- Jesse Luehrs <doy at tozt dot net>
-
-=head1 COPYRIGHT AND LICENSE
-
-This software is copyright (c) 2009-2010 by Jesse Luehrs.
-
-This is free software; you can redistribute it and/or modify it under
-the same terms as perl itself.
diff --git a/dist.ini b/dist.ini
index 2911988..8fb6c81 100644
--- a/dist.ini
+++ b/dist.ini
@@ -6,7 +6,7 @@ copyright_holder = Jesse Luehrs
[@DOY]
dist = App-Termcast
-[Prereq]
+[Prereqs]
Moose = 0
IO::Pty::Easy = 0.07
Term::ReadKey = 0