From: Arthur Axel 'fREW' Schmidt <frioux@gmail.com>
Date: Thu, 25 Feb 2010 05:17:03 +0000 (-0600)
Subject: notes on how this should be done when I refactor completely
X-Git-Tag: v0.001000_01~122
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=c5eedffc6b2be5f477ef23dfac8a043d58a30d49;p=dbsrgits%2FDBIx-Class-DeploymentHandler.git

notes on how this should be done when I refactor completely
---

diff --git a/lib/DBIx/Class/DeploymentHandler/WithSqltDeployMethod.pm b/lib/DBIx/Class/DeploymentHandler/WithSqltDeployMethod.pm
index 55f7c05..133e669 100644
--- a/lib/DBIx/Class/DeploymentHandler/WithSqltDeployMethod.pm
+++ b/lib/DBIx/Class/DeploymentHandler/WithSqltDeployMethod.pm
@@ -6,6 +6,13 @@ use DBIx::Class::DeploymentHandler::SqltDeployMethod;
 use Carp 'carp';
 
 has deploy_method => (
+
+# < mst> isa => 'DBIx::Class::DeploymentHandler::SqltDeployMethod',
+# < mst> should be
+# < mst> does => <some role>
+# < mst> and that role should supply those methods
+# < mst> then you can pass handles => <some role> as well
+
   isa => 'DBIx::Class::DeploymentHandler::SqltDeployMethod',
   is  => 'ro',
   lazy_build => 1,