X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FDeploymentHandler%2FDeprecated%2FWithDeprecatedVersionStorage.pm;h=7f350d495914ce98248910888dccb8bdd5831077;hb=feca70da2cc034f1209e6990b25f15f4b723930d;hp=b8bf4700a607ce3a0284f831f70b2c53fe30835c;hpb=013429985a2df1b341d8e27f98252fa14f878c1f;p=dbsrgits%2FDBIx-Class-DeploymentHandler.git diff --git a/lib/DBIx/Class/DeploymentHandler/Deprecated/WithDeprecatedVersionStorage.pm b/lib/DBIx/Class/DeploymentHandler/Deprecated/WithDeprecatedVersionStorage.pm index b8bf470..7f350d4 100644 --- a/lib/DBIx/Class/DeploymentHandler/Deprecated/WithDeprecatedVersionStorage.pm +++ b/lib/DBIx/Class/DeploymentHandler/Deprecated/WithDeprecatedVersionStorage.pm @@ -1,12 +1,14 @@ package DBIx::Class::DeploymentHandler::Deprecated::WithDeprecatedVersionStorage; use Moose::Role; +# ABSTRACT: (DEPRECATED) Use this if you are stuck in the past + use DBIx::Class::DeploymentHandler::VersionStorage::Deprecated; has version_storage => ( does => 'DBIx::Class::DeploymentHandler::HandlesVersionStorage', is => 'ro', - lazy_build => 1, + builder => '_build_version_storage', handles => 'DBIx::Class::DeploymentHandler::HandlesVersionStorage', ); @@ -17,6 +19,12 @@ sub _build_version_storage { 1; +# vim: ts=2 sw=2 expandtab + __END__ -vim: ts=2 sw=2 expandtab +=head1 DELEGATION ROLE + +This role is entirely for making delegation look like a role. The actual +docs for the methods and attributes are at +L