require Class::MOP;
{
my @include_dirs = @{$self->include_dirs};
- $self->_debug("Adding to \@INC:\n".join "\n",@include_dirs)
- if $self->debug;
local @INC = (@include_dirs, @INC);
Class::MOP::load_class($self->schema_class);
}
isa => Bool,
);
-=head2 debug
-
-Print debug information
-
-=cut
-
-has debug => (
- is => 'rw',
- isa => Bool,
- default => 0
-);
-
-sub _debug { shift; print @_ }
-
has '_confirm' => (
is => 'bare',
isa => Bool,
);
}
-# FIXME - lowercasin will eventually go away when Getopt::Long::Descriptive is fixed
+# FIXME - lowercasing will eventually go away when Getopt::Long::Descriptive is fixed
if($opts->{i}) {
$opts->{include_dirs} = delete $opts->{i};
}