[Module-build-checkins] Module-Build/t/Sample/lib Sample.pm,1.3,1.4
Status: Beta
Brought to you by:
kwilliams
From: Randy W. S. <si...@us...> - 2005-01-07 11:09:28
|
Update of /cvsroot/module-build/Module-Build/t/Sample/lib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3413/t/Sample/lib Modified Files: Sample.pm Log Message: Refactored methods relating to parsing perl module files for package, version, and pod data into a new class. Index: Sample.pm =================================================================== RCS file: /cvsroot/module-build/Module-Build/t/Sample/lib/Sample.pm,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- Sample.pm 14 Jul 2003 17:09:25 -0000 1.3 +++ Sample.pm 7 Jan 2005 11:09:10 -0000 1.4 @@ -29,3 +29,10 @@ } 1; + + +package Sample::Ex; + +our $VERSION = 0.02; + +1; |