Cpan-Meta-Yaml

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

Cpan-Meta-Yaml

CPAN::Meta::YAML(3p) Perl Programmers Reference Guide CPAN::Meta::YAML(3p) # CPAN::Meta::YAML(3p) Perl Programmers Reference Guide CPAN::Meta::YAML(3p) NNAAMMEE # CPAN::Meta::YAML - Read and write a subset of YAML for CPAN Meta files VVEERRSSIIOONN # version 0.018 SSYYNNOOPPSSIISS # use CPAN::Meta::YAML; # reading a META file open $fh, "<:utf8", "META.yml"; $yaml_text = do { local $/; <$fh> }; $yaml = CPAN::Meta::YAML->read_string($yaml_text) or die CPAN::Meta::YAML->errstr; # finding the metadata $meta = $yaml->[0]; # writing a META file $yaml_text = $yaml->write_string or die CPAN::Meta::YAML->errstr; open $fh, ">:utf8", "META. ...