logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

CPAN::Meta::Validator - validate CPAN distribution metadata structures

Authors

• David Golden <dagolden@cpan.org> • Ricardo Signes <rjbs@cpan.org> • Adam Kennedy <adamk@cpan.org>

Bugs

Please report any bugs or feature using the CPAN Request Tracker. Bugs can be submitted through the web interface at <http://rt.cpan.org/Dist/Display.html?Queue=CPAN-Meta> When submitting a bug or request, please include a test-file or a patch to an existing test-file that illustrates the bug or desired feature.

Description

This module validates a CPAN Meta structure against the version of the the specification claimed in the "meta-spec" field of the structure.

Methods

new my $cmv = CPAN::Meta::Validator->new( $struct ) The constructor must be passed a metadata structure. is_valid if ( $cmv->is_valid ) { ... } Returns a boolean value indicating whether the metadata provided is valid. errors warn( join "\n", $cmv->errors ); Returns a list of errors seen during validation.

Name

CPAN::Meta::Validator - validate CPAN distribution metadata structures

Synopsis

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; }

Version

version 2.150010

See Also