summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjluehrs2 <jluehrs2@uiuc.edu>2007-08-16 19:00:36 -0500
committerjluehrs2 <jluehrs2@uiuc.edu>2007-08-16 19:00:36 -0500
commit65dc022f687b3bf5016853b220033e266ed37a09 (patch)
tree788d4275759ebbfde60de68340aef08d4af53e04
parentad301fe03ff962bc53b793bb2c2a11779b71a59f (diff)
downloadio-pty-easy-65dc022f687b3bf5016853b220033e266ed37a09.tar.gz
io-pty-easy-65dc022f687b3bf5016853b220033e266ed37a09.zip
move the module into place, add some boilerplate pod stuff
-rw-r--r--lib/IO/Pty/Easy.pm (renamed from Easy.pm)83
1 files changed, 83 insertions, 0 deletions
diff --git a/Easy.pm b/lib/IO/Pty/Easy.pm
index dc54b45..3faece4 100644
--- a/Easy.pm
+++ b/lib/IO/Pty/Easy.pm
@@ -151,3 +151,86 @@ sub close {
}
1;
+#!perl
+package IO::Pty::Easy;
+use strict;
+use warnings;
+
+
+
+=head1 NAME
+
+IO::Pty::Easy - ???
+
+=head1 VERSION
+
+Version 0.01 released ???
+
+=cut
+
+our $VERSION = '0.01';
+
+=head1 SYNOPSIS
+
+ use IO::Pty::Easy;
+ do_stuff();
+
+=head1 DESCRIPTION
+
+
+
+=head1 SEE ALSO
+
+L<Foo::Bar>
+
+=head1 AUTHOR
+
+Shawn M Moore, C<< <sartak at gmail.com> >>
+
+=head1 BUGS
+
+No known bugs.
+
+Please report any bugs through RT: email
+C<bug-io-pty-easy at rt.cpan.org>, or browse to
+L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=IO-Pty-Easy>.
+
+=head1 SUPPORT
+
+You can find this documentation for this module with the perldoc command.
+
+ perldoc IO::Pty::Easy
+
+You can also look for information at:
+
+=over 4
+
+=item * AnnoCPAN: Annotated CPAN documentation
+
+L<http://annocpan.org/dist/IO-Pty-Easy>
+
+=item * CPAN Ratings
+
+L<http://cpanratings.perl.org/d/IO-Pty-Easy>
+
+=item * RT: CPAN's request tracker
+
+L<http://rt.cpan.org/NoAuth/Bugs.html?Dist=IO-Pty-Easy>
+
+=item * Search CPAN
+
+L<http://search.cpan.org/dist/IO-Pty-Easy>
+
+=back
+
+=head1 COPYRIGHT AND LICENSE
+
+Copyright 2007 Shawn M Moore.
+
+This program is free software; you can redistribute it and/or modify it
+under the same terms as Perl itself.
+
+=cut
+
+1;
+