-
-
18 Aug 2016 16:11:08 UTC
- Distribution: CPAN-Meta
- Module version: 2.150010
- Source (raw)
- Browse (raw)
- Changes
- Homepage
- How to Contribute
- Repository
- Issues
- Testers (3133 / 11 / 0)
- Kwalitee
Bus factor: 5- 79.06% Coverage
- License: perl_5
- Perl: v5.8.1
- Activity
24 month- Tools
- Download (112.75KB)
- MetaCPAN Explorer
- Permissions
- Subscribe to distribution
- Permalinks
- This version
- Latest version
and 30 contributors-
Ricardo Signes
-
Adam Kennedy
-
Ansgar Burchardt
-
Avar Arnfjord Bjarmason
-
Benjamin Noggle
-
Christopher J. Madsen
-
Chuck Adams
-
Cory G Watson
-
Damyan Ivanov
-
Eric Wilhelm
-
Graham Knop
-
Gregor Hermann
-
Karen Etheridge
-
Kenichi Ishigaki
-
Kent Fredric
-
Ken Williams
-
Lars Dieckow
-
Leon Timmermans
-
majensen
-
Mark Fowler
-
Matt S Trout
-
Michael G. Schwern
-
Mohammad S Anwar
-
mohawk2
-
moznion
-
Niko Tyni
-
Olaf Alders
-
Olivier Mengué
-
Randy Sims
-
Tomohiro Hosaka
NAME
CPAN::Meta::Validator - validate CPAN distribution metadata structures
VERSION
version 2.150010
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; }
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.
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.
AUTHORS
David Golden <dagolden@cpan.org>
Ricardo Signes <rjbs@cpan.org>
Adam Kennedy <adamk@cpan.org>
COPYRIGHT AND LICENSE
This software is copyright (c) 2010 by David Golden, Ricardo Signes, Adam Kennedy and Contributors.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
Module Install Instructions
To install CPAN::Meta, copy and paste the appropriate command in to your terminal.
cpanm CPAN::Meta
perl -MCPAN -e shell install CPAN::Meta
For more information on module installation, please visit the detailed CPAN module installation guide.