updated README, added MANIFEST.skip
Christian Hansen [Sat, 29 Oct 2005 16:44:01 +0000 (16:44 +0000)]
MANIFEST
MANIFEST.SKIP [new file with mode: 0644]
META.yml
README

index 68b1f0d..1550996 100644 (file)
--- a/MANIFEST
+++ b/MANIFEST
@@ -9,3 +9,5 @@ README
 t/01use.t
 t/04io.t
 t/05env.t
+t/06response.t
+t/07forking.t
diff --git a/MANIFEST.SKIP b/MANIFEST.SKIP
new file mode 100644 (file)
index 0000000..2ffcc10
--- /dev/null
@@ -0,0 +1,25 @@
+# Avoid version control files.
+\bRCS\b
+\bCVS\b
+,v$
+\B\.svn\b
+
+# Avoid Makemaker generated and utility files.
+\bMakefile$
+\bblib
+\bMakeMaker-\d
+\bpm_to_blib$
+\bblibdirs$
+^MANIFEST\.SKIP$
+
+# Avoid Module::Build generated and utility files.
+\bBuild$
+\b_build
+
+# Avoid temp and backup files.
+~$
+\.tmp$
+\.old$
+\.bak$
+\#$
+\b\.#
index 81b7d32..10bae85 100644 (file)
--- a/META.yml
+++ b/META.yml
@@ -1,7 +1,7 @@
 # http://module-build.sourceforge.net/META-spec.html
 #XXXXXXX This is a prototype!!!  It will change in the future!!! XXXXX#
 name:         HTTP-Request-AsCGI
-version:      0.1
+version:      0.2
 version_from: lib/HTTP/Request/AsCGI.pm
 installdirs:  site
 requires:
@@ -10,6 +10,7 @@ requires:
     HTTP::Request:                 0
     HTTP::Response:                0
     IO::File:                      0
+    Test::More:                    0
 
 distribution_type: module
 generated_by: ExtUtils::MakeMaker version 6.17
diff --git a/README b/README
index 2e3ad7d..68e659f 100644 (file)
--- a/README
+++ b/README
@@ -35,7 +35,7 @@ DESCRIPTION
 METHODS
     new ( $request [, key => value ] )
         Contructor, first argument must be a instance of HTTP::Request
-        followed by optional pairs of environment keys and values.
+        followed by optional pairs of environment key and value.
 
     enviroment
         Returns a hashref containing the environment that will be used in
@@ -69,6 +69,11 @@ METHODS
         Accessor for handle that will be used for STDERR, must be a real
         seekable handle with an file descriptor.
 
+SEE ALSO
+    examples directory in this distribution.
+    WWW::Mechanize::CGI
+    Test::WWW::Mechanize::CGI
+
 THANKS TO
     Thomas L. Shinnick for his valuable win32 testing.