App-madeye

 view release on metacpan or  search on metacpan

lib/App/MadEye/Plugin/Base.pm  view on Meta::CPAN

package App::MadEye::Plugin::Base;
use strict;
use warnings;
use base qw/Class::Component::Plugin/;
use App::MadEye::Util qw/get_schema_from_pod/;
use Kwalify ();

sub new {
    my $class = shift;
    my $self = $class->SUPER::new(@_);

    if (my $schema = get_schema_from_pod($self)) {
        local $SIG{__DIE__} = sub { die "$self: @_" };
        Kwalify::validate($schema, $self->config->{config});
    }

    $self;
}

1;



( run in 1.434 second using v1.01-cache-2.11-cpan-98e64b0badf )