[Bps-public-commit] r16539 - in Prophet/trunk: .

spang at bestpractical.com spang at bestpractical.com
Sun Oct 26 17:05:11 EDT 2008


Author: spang
Date: Sun Oct 26 17:05:09 2008
New Revision: 16539

Modified:
   Prophet/trunk/   (props changed)
   Prophet/trunk/lib/Prophet/App.pm

Log:
 r50899 at loki:  spang | 2008-10-25 22:22:53 -0400
 stub out pod in Prophet::App


Modified: Prophet/trunk/lib/Prophet/App.pm
==============================================================================
--- Prophet/trunk/lib/Prophet/App.pm	(original)
+++ Prophet/trunk/lib/Prophet/App.pm	Sun Oct 26 17:05:09 2008
@@ -46,6 +46,18 @@
 
 Prophet::App
 
+=head1 SYNOPSIS
+
+=head1 METHODS
+
+=head2 BUILD
+
+=cut
+
+=head2 default_replica_type
+
+Returns a string of the the default replica type for this application.
+
 =cut
 
 sub default_replica_type {
@@ -53,18 +65,29 @@
     return $ENV{'PROPHET_REPLICA_TYPE'} || DEFAULT_REPLICA_TYPE;
 }
 
+=head2 require
+
+=cut
+
 sub require {
     my $self = shift;
     my $class = shift;
     $self->_require(module => $class);
 }
 
+=head2 try_to_require
+
+=cut
+
 sub try_to_require {
     my $self = shift;
     my $class = shift;
     $self->_require(module => $class, quiet => 1);
 }
 
+=head2 _require
+
+=cut
 
 sub _require {
     my $self = shift;



More information about the Bps-public-commit mailing list