fixed pod coverage
Marcus Ramberg [Wed, 16 Mar 2005 13:52:02 +0000 (13:52 +0000)]
added MANIFEST

Changes
MANIFEST [new file with mode: 0644]
lib/Catalyst/Base.pm
lib/Catalyst/Engine.pm

diff --git a/Changes b/Changes
index 21e33f9..3ea0b31 100644 (file)
--- a/Changes
+++ b/Changes
@@ -4,6 +4,7 @@ This file documents the revision history for Perl extension Catalyst.
         - fixed the weird bug that caused regex actions to fail on every
           second request
         - somemore debug messages
+        - 100% pod coverage.
 
 4.25  Sat Mar 12 18:00:00 2005
         - correct perl pathes for helper generated scripts (Tatsuhiko Miyagawa)
diff --git a/MANIFEST b/MANIFEST
new file mode 100644 (file)
index 0000000..83a8914
--- /dev/null
+++ b/MANIFEST
@@ -0,0 +1,36 @@
+Changes
+lib/Catalyst.pm
+lib/Catalyst/Base.pm
+lib/Catalyst/Engine.pm
+lib/Catalyst/Engine/Apache.pm
+lib/Catalyst/Engine/CGI.pm
+lib/Catalyst/Helper.pm
+lib/Catalyst/Log.pm
+lib/Catalyst/Manual.pod
+lib/Catalyst/Manual/Cookbook.pod
+lib/Catalyst/Manual/FAQ.pod
+lib/Catalyst/Manual/Internals.pod
+lib/Catalyst/Manual/Intro.pod
+lib/Catalyst/Manual/SuccessStories.pod
+lib/Catalyst/Manual/Troubleshooting.pod
+lib/Catalyst/Request.pm
+lib/Catalyst/Response.pm
+lib/Catalyst/Test.pm
+Makefile.PL
+MANIFEST                       This list of files
+META.yml
+README
+script/catalyst.pl
+t/01use.t
+t/02podcoverage.t
+t/03plainaction.t
+t/04regexaction.t
+t/05parameters.t
+t/06arguments.t
+t/07headers.t
+t/08cookies.t
+t/09forward.t
+t/10redirect.t
+t/11stash.t
+t/12default.t
+t/13beginend.t
index 7da4dbc..f0138cf 100644 (file)
@@ -50,6 +50,7 @@ component loader with config() support and a process() method placeholder.
 
 =head2 METHODS
 
+=head3 new
 =cut
 
 sub new {
index ff01603..358a940 100644 (file)
@@ -136,7 +136,7 @@ sub benchmark {
     return wantarray ? ( $elapsed, @return ) : $elapsed;
 }
 
-=head3 component (comp)
+=head3 component / comp
 
 Get a component object by name.