various doc
Arthur Axel 'fREW' Schmidt [Wed, 5 May 2010 05:39:14 +0000 (00:39 -0500)]
lib/DBIx/Class/DeploymentHandler/VersionStorage/Deprecated/Component.pm
lib/DBIx/Class/DeploymentHandler/VersionStorage/Deprecated/VersionResult.pm
lib/DBIx/Class/DeploymentHandler/VersionStorage/Deprecated/VersionResultSet.pm
lib/DBIx/Class/DeploymentHandler/VersionStorage/Standard/Component.pm
lib/DBIx/Class/DeploymentHandler/VersionStorage/Standard/VersionResult.pm
lib/DBIx/Class/DeploymentHandler/VersionStorage/Standard/VersionResultSet.pm

index 36e1acc..896600a 100644 (file)
@@ -1,5 +1,7 @@
 package DBIx::Class::DeploymentHandler::VersionStorage::Deprecated::Component;
 
+# ABSTRACT: (DEPRECATED) Attach this component to your schema to ensure you stay up to date
+
 use strict;
 use warnings;
 
index 7c316c3..e7efe0e 100644 (file)
@@ -1,5 +1,7 @@
 package DBIx::Class::DeploymentHandler::VersionStorage::Deprecated::VersionResult;
 
+# ABSTRACT: (DEPRECATED) The old way to store versions in the database
+
 use strict;
 use warnings;
 
index 75fc74f..ece8e3c 100644 (file)
@@ -1,5 +1,7 @@
 package DBIx::Class::DeploymentHandler::VersionStorage::Deprecated::VersionResultSet;
 
+# ABSTRACT: (DEPRECATED) Predefined searches to find what you want from the version storage
+
 use strict;
 use warnings;
 
@@ -49,3 +51,14 @@ sub create {
 
 __END__
 
+=method version_storage_is_installed
+
+True if (!!!) the version storage has been installed
+
+=method database_version
+
+The version of the database
+
+=method create
+
+Overridden to default C<installed> to the current time. (take a look, it's yucky)
index a26ed81..578bd3b 100644 (file)
@@ -1,5 +1,7 @@
 package DBIx::Class::DeploymentHandler::VersionStorage::Standard::Component;
 
+# ABSTRACT: Attach this component to your schema to ensure you stay up to date
+
 use strict;
 use warnings;
 
index 6e15abc..6cba956 100644 (file)
@@ -1,5 +1,7 @@
 package DBIx::Class::DeploymentHandler::VersionStorage::Standard::VersionResult;
 
+# ABSTRACT: The typical way to store versions in the database
+
 use strict;
 use warnings;
 
index 29f4003..fe91ff8 100644 (file)
@@ -1,5 +1,7 @@
 package DBIx::Class::DeploymentHandler::VersionStorage::Standard::VersionResultSet;
 
+# ABSTRACT: Predefined searches to find what you want from the version storage
+
 use strict;
 use warnings;
 
@@ -26,3 +28,10 @@ sub database_version {
 
 __END__
 
+=method version_storage_is_installed
+
+True if (!!!) the version storage has been installed
+
+=method database_version
+
+The version of the database