PerlDancer / Dist-Zilla-PluginBundle-Dancer

dzil plugins used by Dancer projects

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Configuration now considered Invalid to Config::MVP

kentfredric opened this issue · comments

You'll see a build failure here: PerlDancer/Dancer-Plugin-Auth-Twitter#11

Though the redux of the problem is Config::MVP previously accepted

[ PluginName => { field_name => [ ] }

It no longer does, partially due to such an equivalent syntax not being possible in ini, and thus being a semantic err.

The nearest you can do in ini is

[PluginName]

and

[PluginName]
field_name =

Which are

[ PluginName => { } ]

and

[ PluginName => { field_name => [ '' ] }

Respectively.

Thanks for the detective work. Fixed, merged, sent to CPAN.

👍 Thanks Kent!