Subject: | IO::File->new() called without using IO::File module |
IO::File->new() is called twice in lib/Dist/Zilla/Plugin/CopyFilesFromBuild.pm without any prior "use" or "require" of that module. The call does not fail only because another loaded module loads IO::File transitively. If this assumption ceases, Dist::Zilla::Plugin::CopyFilesFromBuild will stop working.
I recommend to add "use IO::File;" to the Dist::Zilla::Plugin::CopyFilesFromBuild module.