From ad301fe03ff962bc53b793bb2c2a11779b71a59f Mon Sep 17 00:00:00 2001 From: jluehrs2 Date: Thu, 16 Aug 2007 18:59:45 -0500 Subject: add cpan stuff --- Changes | 5 +++++ Makefile.PL | 14 ++++++++++++++ README | 44 ++++++++++++++++++++++++++++++++++++++++++++ t/000-load.t | 7 +++++++ t/001-basic.t | 8 ++++++++ 5 files changed, 78 insertions(+) create mode 100644 Changes create mode 100644 Makefile.PL create mode 100644 README create mode 100644 t/000-load.t create mode 100644 t/001-basic.t diff --git a/Changes b/Changes new file mode 100644 index 0000000..8d1bac2 --- /dev/null +++ b/Changes @@ -0,0 +1,5 @@ +Revision history for IO-Pty-Easy + +0.01 Thu Aug 16 18:54:34 2007 + First version, released on an unsuspecting world. + diff --git a/Makefile.PL b/Makefile.PL new file mode 100644 index 0000000..1cc695b --- /dev/null +++ b/Makefile.PL @@ -0,0 +1,14 @@ +# Load the Module::Install bundled in ./inc/ +use inc::Module::Install; + +# Define metadata +name 'IO-Pty-Easy'; +all_from 'lib/IO/Pty/Easy.pm'; + +requires 'IO::Pty'; + +build_requires 'Test::More'; + +auto_install; +WriteAll; + diff --git a/README b/README new file mode 100644 index 0000000..a2e7a7b --- /dev/null +++ b/README @@ -0,0 +1,44 @@ +IO-Pty-Easy 0.01 + +IO::Pty::Easy is + +MAJOR CHANGES + 0.01: first version + +INSTALLATION + +To install this module, run the following commands: + + perl Makefile.PL + make + make test + make install + +SUPPORT AND DOCUMENTATION + +After installing, you can find documentation for this module with the perldoc +command. + + perldoc IO::Pty::Easy + +You can also look for information at: + + Search CPAN + http://search.cpan.org/dist/IO-Pty-Easy + + CPAN Request Tracker: + http://rt.cpan.org/NoAuth/Bugs.html?Dist=IO-Pty-Easy + + AnnoCPAN, annotated CPAN documentation: + http://annocpan.org/dist/IO-Pty-Easy + + CPAN Ratings: + http://cpanratings.perl.org/d/IO-Pty-Easy + +COPYRIGHT AND LICENSE + +Copyright (C) 2007 Jesse Luehrs + +This program is free software; you can redistribute it and/or modify it +under the same terms as Perl itself. + diff --git a/t/000-load.t b/t/000-load.t new file mode 100644 index 0000000..e7e67ca --- /dev/null +++ b/t/000-load.t @@ -0,0 +1,7 @@ +#!perl -T +use strict; +use warnings; +use Test::More tests => 1; + +use_ok 'IO::Pty::Easy'; + diff --git a/t/001-basic.t b/t/001-basic.t new file mode 100644 index 0000000..2ac09a9 --- /dev/null +++ b/t/001-basic.t @@ -0,0 +1,8 @@ +#!perl -T +use strict; +use warnings; +use Test::More tests => 1; +use IO::Pty::Easy; + +ok(1); + -- cgit v1.2.3-54-g00ecf