- improve the transform2() documentation
http://rt.cpan.org/Ticket/Display.html?id=29267
+ - correctly generate the author key in META.yml
+ http://rt.cpan.org/Ticket/Display.html?id=30377
+
Imager 0.60 - 30 August 2007
===========
name: Imager
version: 0.60
version_from: Imager.pm
-author: Tony Cook <tony@imager.perl.org>, Arnar M. Hrafnkelsson
+author:
+ - Tony Cook <tony@imager.perl.org>
+ - Arnar M. Hrafnkelsson
abstract: Perl extension for Generating 24 bit Images
installdirs: site
recommends:
name: $opts->{NAME}
version: $version
version_from: $opts->{VERSION_FROM}
-author: $opts->{AUTHOR}
+author:
+YAML
+ for my $author (split /,\s*/, $opts->{AUTHOR}) {
+ $meta .= " - $author\n";
+ }
+ $meta .= <<YAML;
abstract: $opts->{ABSTRACT}
installdirs: site
YAML
--- /dev/null
+#!perl -w
+# this is not intended for distribution with Imager
+# it is intended for testing from SVN only
+use strict;
+use Test::More;
+eval "use Test::YAML::Meta";
+plan skip_all => "Test::YAML::Meta required for testing META.yml" if $@;
+meta_yaml_ok();
+