Subject: | META.yml field author has to be an array |
The META.yml spec defines the field 'author' to be a 'list of strings':
http://module-build.sourceforge.net/META-spec-current.html#author
Module::Install creates META.yml files with a plain string author:
author: 'Audrey Tang <autrijus@autrijus.org>'
According to the Spec, this should look like:
author:
- 'Audrey Tang <autrijus@autrijus.org>'
BTW, this Bug is related to 16569