Cpan-Meta-Validator

CPAN::Meta::Validator(3p) Perl Programmers Reference Guide

Cpan-Meta-Validator

CPAN::Meta::Validator(3p) Perl Programmers Reference Guide # CPAN::Meta::Validator(3p) Perl Programmers Reference Guide NNAAMMEE # CPAN::Meta::Validator - validate CPAN distribution metadata structures VVEERRSSIIOONN # version 2.150010 SSYYNNOOPPSSIISS # my $struct = decode_json_file('META.json'); my $cmv = CPAN::Meta::Validator->new( $struct ); unless ( $cmv->is_valid ) { my $msg = "Invalid META structure. Errors found:\n"; $msg .= join( "\n", $cmv->errors ); die $msg; } DDEESSCCRRIIPPTTIIOONN # This module validates a CPAN Meta structure against the version of the the specification claimed in the "meta-spec" field of the structure. ...