From: Arthur Axel 'fREW' Schmidt Date: Wed, 5 May 2010 05:39:14 +0000 (-0500) Subject: various doc X-Git-Tag: v0.001000_06~2 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=dbsrgits%2FDBIx-Class-DeploymentHandler.git;a=commitdiff_plain;h=0fa93773fb497ce7b5c737de506f4185d304d76a various doc --- diff --git a/lib/DBIx/Class/DeploymentHandler/VersionStorage/Deprecated/Component.pm b/lib/DBIx/Class/DeploymentHandler/VersionStorage/Deprecated/Component.pm index 36e1acc..896600a 100644 --- a/lib/DBIx/Class/DeploymentHandler/VersionStorage/Deprecated/Component.pm +++ b/lib/DBIx/Class/DeploymentHandler/VersionStorage/Deprecated/Component.pm @@ -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; diff --git a/lib/DBIx/Class/DeploymentHandler/VersionStorage/Deprecated/VersionResult.pm b/lib/DBIx/Class/DeploymentHandler/VersionStorage/Deprecated/VersionResult.pm index 7c316c3..e7efe0e 100644 --- a/lib/DBIx/Class/DeploymentHandler/VersionStorage/Deprecated/VersionResult.pm +++ b/lib/DBIx/Class/DeploymentHandler/VersionStorage/Deprecated/VersionResult.pm @@ -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; diff --git a/lib/DBIx/Class/DeploymentHandler/VersionStorage/Deprecated/VersionResultSet.pm b/lib/DBIx/Class/DeploymentHandler/VersionStorage/Deprecated/VersionResultSet.pm index 75fc74f..ece8e3c 100644 --- a/lib/DBIx/Class/DeploymentHandler/VersionStorage/Deprecated/VersionResultSet.pm +++ b/lib/DBIx/Class/DeploymentHandler/VersionStorage/Deprecated/VersionResultSet.pm @@ -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 to the current time. (take a look, it's yucky) diff --git a/lib/DBIx/Class/DeploymentHandler/VersionStorage/Standard/Component.pm b/lib/DBIx/Class/DeploymentHandler/VersionStorage/Standard/Component.pm index a26ed81..578bd3b 100644 --- a/lib/DBIx/Class/DeploymentHandler/VersionStorage/Standard/Component.pm +++ b/lib/DBIx/Class/DeploymentHandler/VersionStorage/Standard/Component.pm @@ -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; diff --git a/lib/DBIx/Class/DeploymentHandler/VersionStorage/Standard/VersionResult.pm b/lib/DBIx/Class/DeploymentHandler/VersionStorage/Standard/VersionResult.pm index 6e15abc..6cba956 100644 --- a/lib/DBIx/Class/DeploymentHandler/VersionStorage/Standard/VersionResult.pm +++ b/lib/DBIx/Class/DeploymentHandler/VersionStorage/Standard/VersionResult.pm @@ -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; diff --git a/lib/DBIx/Class/DeploymentHandler/VersionStorage/Standard/VersionResultSet.pm b/lib/DBIx/Class/DeploymentHandler/VersionStorage/Standard/VersionResultSet.pm index 29f4003..fe91ff8 100644 --- a/lib/DBIx/Class/DeploymentHandler/VersionStorage/Standard/VersionResultSet.pm +++ b/lib/DBIx/Class/DeploymentHandler/VersionStorage/Standard/VersionResultSet.pm @@ -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