[Bps-public-commit] r12926 - in Shipwright: . trunk/lib/Shipwright/Backend

spang at bestpractical.com spang at bestpractical.com
Thu Jun 5 15:01:37 EDT 2008


Author: spang
Date: Thu Jun  5 15:01:36 2008
New Revision: 12926

Modified:
   Shipwright/   (props changed)
   Shipwright/trunk/lib/Shipwright/Backend.pm
   Shipwright/trunk/lib/Shipwright/Backend/SVK.pm
   Shipwright/trunk/lib/Shipwright/Backend/SVN.pm

Log:
 r40864 at loki:  spang | 2008-06-05 12:06:23 -0400
 Rearrange some pod so that pod-coverage.t is happy again


Modified: Shipwright/trunk/lib/Shipwright/Backend.pm
==============================================================================
--- Shipwright/trunk/lib/Shipwright/Backend.pm	(original)
+++ Shipwright/trunk/lib/Shipwright/Backend.pm	Thu Jun  5 15:01:36 2008
@@ -5,6 +5,28 @@
 use Carp;
 use UNIVERSAL::require;
 
+=head1 NAME
+
+Shipwright::Backend - VCS repository backends
+
+=head1 SYNOPSIS
+
+use Shipwright::Backend;
+$backend = Shipwright::Backend->new (repository => $args{repository});
+
+=head1 METHODS
+
+=over
+
+=item new
+
+The constructor returns the Backend object that corresponds to the type in
+$args{repository}.
+
+Currently, the only supported backends are SVN and SVK.
+
+=cut
+
 sub new {
     my $class = shift;
     my %args  = @_;
@@ -32,21 +54,7 @@
 
 __END__
 
-=head1 NAME
-
-Shipwright::Backend - VCS repository backends
-
-=head1 SYNOPSIS
-
-use Shipwright::Backend;
-$backend = Shipwright::Backend->new (repository => $args{repository});
-
-=head1 CONSTRUCTOR
-
-The constructor returns the Backend object that corresponds to the type in
-$args{repository}.
-
-Currently, the only supported backends are SVN and SVK.
+=back
 
 =head1 INTERFACE
 

Modified: Shipwright/trunk/lib/Shipwright/Backend/SVK.pm
==============================================================================
--- Shipwright/trunk/lib/Shipwright/Backend/SVK.pm	(original)
+++ Shipwright/trunk/lib/Shipwright/Backend/SVK.pm	Thu Jun  5 15:01:36 2008
@@ -22,12 +22,14 @@
 
 This module implements an SVK repository backend for Shipwright.
 
-=head1 CONSTRUCTOR
-
 =head1 METHODS
 
 =over
 
+=item new
+
+This is the constructor.
+
 =cut
 
 sub new {

Modified: Shipwright/trunk/lib/Shipwright/Backend/SVN.pm
==============================================================================
--- Shipwright/trunk/lib/Shipwright/Backend/SVN.pm	(original)
+++ Shipwright/trunk/lib/Shipwright/Backend/SVN.pm	Thu Jun  5 15:01:36 2008
@@ -22,12 +22,14 @@
 
 This module implements a SVN repository backend for Shipwright.
 
-=head1 CONSTRUCTOR
-
 =head1 METHODS
 
 =over
 
+=item new
+
+This is the constructor.
+
 =cut
 
 sub new {



More information about the Bps-public-commit mailing list