Author: dylan
Date: 2005-01-25 18:16:19 -0500 (Tue, 25 Jan 2005)
New Revision: 608

Modified:
   trunk/dev-tools/vim-automod/template.pm
Log:
perlmodstyle says documentation is mixed with code.
Who am I to argue?


Modified: trunk/dev-tools/vim-automod/template.pm
===================================================================
--- trunk/dev-tools/vim-automod/template.pm     2005-01-25 23:12:50 UTC (rev 
607)
+++ trunk/dev-tools/vim-automod/template.pm     2005-01-25 23:16:19 UTC (rev 
608)
@@ -1,29 +1,5 @@
 # vim: set ts=4 sw=4 expandtab si ai sta tw=100:
 # This module is copyrighted, see end of file for details.
-package <<PACKAGE>>;
-use strict;
-use warnings;
-
-our $VERSION = 0.01;
-use base 'Haver::Base'; # Highly recommended for haver stuff.
-
-sub initialize {
-    my ($me) = @_;
-
-    # <<CURSOR>>
-}
-
-# use this instead of overriding DESTROY, if you extend Haver::Base.
-# sub finalize {
-#     my ($me) = @_;
-#     
-# }
-
-
-
-1;
-__END__
-
 =head1 NAME
 
 <<PACKAGE>> - description
@@ -37,15 +13,40 @@
 
 FIXME
 
+=cut
 
+package <<PACKAGE>>;
+use strict;
+use warnings;
+
+our $VERSION = 0.01;
+
 =head1 INHERITENCE
 
 <<PACKAGE>> extends L<Haver::Base>.
 
+=cut
+
+use base 'Haver::Base'; # Highly recommended for haver stuff.
+
 =head1 CONSTRUCTOR
 
 List required parameters for new().
 
+=cut
+
+sub initialize {
+    my ($me) = @_;
+
+    # <<CURSOR>>
+}
+
+# use this instead of overriding DESTROY, if you extend Haver::Base.
+# sub finalize {
+#     my ($me) = @_;
+#     
+# }
+
 =head1 METHODS
 
 This class implements the following methods:
@@ -54,6 +55,10 @@
 
 ...
 
+=cut 
+
+# Methods go here. Make sure to document them.
+
 =head1 BUGS
 
 None known. Bug reports are welcome. Please use our bug tracker at


Reply via email to