From: Marcus Ramberg Date: Wed, 16 Mar 2005 13:52:02 +0000 (+0000) Subject: fixed pod coverage X-Git-Tag: 5.7099_04~1763 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=748161c4ad23fb071c9906201f98d7aaaad29222 fixed pod coverage added MANIFEST --- diff --git a/Changes b/Changes index 21e33f9..3ea0b31 100644 --- 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 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 diff --git a/lib/Catalyst/Base.pm b/lib/Catalyst/Base.pm index 7da4dbc..f0138cf 100644 --- a/lib/Catalyst/Base.pm +++ b/lib/Catalyst/Base.pm @@ -50,6 +50,7 @@ component loader with config() support and a process() method placeholder. =head2 METHODS +=head3 new =cut sub new { diff --git a/lib/Catalyst/Engine.pm b/lib/Catalyst/Engine.pm index ff01603..358a940 100644 --- a/lib/Catalyst/Engine.pm +++ b/lib/Catalyst/Engine.pm @@ -136,7 +136,7 @@ sub benchmark { return wantarray ? ( $elapsed, @return ) : $elapsed; } -=head3 component (comp) +=head3 component / comp Get a component object by name.