Changeset 408
- Timestamp:
- 07/18/07 00:08:19 (1 year ago)
- Files:
-
- library/perl/trunk/Parse-Apache-ServerStatus-Extended/Changes (modified) (1 diff)
- library/perl/trunk/Parse-Apache-ServerStatus-Extended/MANIFEST (modified) (1 diff)
- library/perl/trunk/Parse-Apache-ServerStatus-Extended/lib/Parse/Apache/ServerStatus/Extended.pm (modified) (1 diff)
- library/perl/trunk/Parse-Apache-ServerStatus-Extended/t/perlcritic.t (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
library/perl/trunk/Parse-Apache-ServerStatus-Extended/Changes
r400 r408 1 1 Revision history for Parse-Apache-ServerStatus-Extended 2 2 3 0.0.1 Mon Jul 9 15:35:29 2007 3 0.02 Tue Jul 17 23:58:00 2007 4 Fix t/perlcritic.t 5 6 0.01 Mon Jul 9 15:35:29 2007 4 7 Initial release. 5 8 library/perl/trunk/Parse-Apache-ServerStatus-Extended/MANIFEST
r400 r408 1 1 Changes 2 MANIFEST 3 META.yml # Will be created by "make dist" 2 inc/Module/AutoInstall.pm 3 inc/Module/Install.pm 4 inc/Module/Install/AutoInstall.pm 5 inc/Module/Install/Base.pm 6 inc/Module/Install/Can.pm 7 inc/Module/Install/Fetch.pm 8 inc/Module/Install/Include.pm 9 inc/Module/Install/Makefile.pm 10 inc/Module/Install/Metadata.pm 11 inc/Module/Install/Win32.pm 12 inc/Module/Install/WriteAll.pm 13 lib/Parse/Apache/ServerStatus/Extended.pm 4 14 Makefile.PL 15 MANIFEST This list of files 16 META.yml 5 17 README 6 lib/Parse/Apache/ServerStatus/Extended.pm7 18 t/00.load.t 8 19 t/perlcritic.t library/perl/trunk/Parse-Apache-ServerStatus-Extended/lib/Parse/Apache/ServerStatus/Extended.pm
r407 r408 6 6 use base qw( Parse::Apache::ServerStatus ); 7 7 8 our $VERSION = '0.0 1';8 our $VERSION = '0.02'; 9 9 use 5.8.1; 10 10 library/perl/trunk/Parse-Apache-ServerStatus-Extended/t/perlcritic.t
r400 r408 1 1 #!perl 2 2 3 if (!require Test::Perl::Critic) { 3 use Test::More; 4 5 eval { require Test::Perl::Critic }; 6 if ( $@ ) { 4 7 Test::More::plan( 5 8 skip_all => "Test::Perl::Critic required for testing PBP compliance"
