summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Changes5
-rw-r--r--Makefile.PL14
-rw-r--r--README44
-rw-r--r--t/000-load.t7
-rw-r--r--t/001-basic.t8
5 files changed, 78 insertions, 0 deletions
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);
+