remove remaining refereces to Method::Signatures::Simple
Arthur Axel 'fREW' Schmidt [Thu, 16 Feb 2012 14:54:12 +0000 (08:54 -0600)]
lib/DBIx/Class/DeploymentHandler/DeployMethod/SQL/Translator/Deprecated.pm
lib/DBIx/Class/DeploymentHandler/VersionHandler/DatabaseToSchemaVersions.pm
lib/DBIx/Class/DeploymentHandler/VersionStorage/Deprecated.pm
lib/DBIx/Class/DeploymentHandler/VersionStorage/Standard.pm

index 813013c..368905a 100644 (file)
@@ -3,17 +3,17 @@ use Moose;
 
 # ABSTRACT: (DEPRECATED) Use this if you are stuck in the past
 
-use Method::Signatures::Simple;
-
 use File::Spec::Functions;
 
-extends 'DBIx::Class::DeploymentHandler::DeployMethod::SQL::Translator',
+extends 'DBIx::Class::DeploymentHandler::DeployMethod::SQL::Translator';
 
-method _ddl_schema_consume_filenames($type, $version) {
+sub _ddl_schema_consume_filenames {
+  my ($self, $type, $version) = @_;
   return [$self->_ddl_schema_produce_filename($type, $version)]
 }
 
-method _ddl_schema_produce_filename($type, $version) {
+sub _ddl_schema_produce_filename {
+  my ($self, $type, $version) = @_;
   my $filename = ref $self->schema;
   $filename =~ s/::/-/g;
 
@@ -24,7 +24,8 @@ method _ddl_schema_produce_filename($type, $version) {
   return $filename;
 }
 
-method _ddl_schema_up_produce_filename($type, $versions, $dir) {
+sub _ddl_schema_up_produce_filename {
+  my ($self, $type, $versions, $dir) = @_;
   my $filename = ref $self->schema;
   $filename =~ s/::/-/g;
 
@@ -35,7 +36,8 @@ method _ddl_schema_up_produce_filename($type, $versions, $dir) {
   return $filename;
 }
 
-method _ddl_schema_up_consume_filenames($type, $versions) {
+sub _ddl_schema_up_consume_filenames {
+  my ($self, $type, $versions) = @_;
   return [$self->_ddl_schema_up_produce_filename($type, $versions)]
 }
 
index de34af0..fd0f798 100644 (file)
@@ -3,8 +3,6 @@ use Moose;
 
 # ABSTRACT: Go straight from Database to Schema version
 
-use Method::Signatures::Simple;
-
 with 'DBIx::Class::DeploymentHandler::HandlesVersioning';
 
 has schema_version => (
index 3b13fa7..9754a16 100644 (file)
@@ -9,8 +9,6 @@ use Log::Contextual ':log', -package_logger =>
 
 # ABSTRACT: (DEPRECATED) Use this if you are stuck in the past
 
-use Method::Signatures::Simple;
-
 has schema => (
   isa      => 'DBIx::Class::Schema',
   is       => 'ro',
index cc79c4f..bff0301 100644 (file)
@@ -8,7 +8,6 @@ use Log::Contextual ':log', -package_logger =>
 
 # ABSTRACT: Version storage that does the normal stuff
 
-use Method::Signatures::Simple;
 use DBIx::Class::DeploymentHandler::VersionStorage::Standard::VersionResult;
 
 has schema => (