| Dist-Zilla documentation | Contained in the Dist-Zilla distribution. |
Dist::Zilla::MVP::Reader::Finder - the reader for dist.ini files
version 4.200008
Ricardo SIGNES <rjbs@cpan.org>
This software is copyright (c) 2011 by Ricardo SIGNES.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
| Dist-Zilla documentation | Contained in the Dist-Zilla distribution. |
package Dist::Zilla::MVP::Reader::Finder; BEGIN { $Dist::Zilla::MVP::Reader::Finder::VERSION = '4.200008'; } use Moose; use Config::MVP::Reader 2.101540; # if_none extends 'Config::MVP::Reader::Finder'; # ABSTRACT: the reader for dist.ini files use Dist::Zilla::MVP::Assembler; sub default_search_path { return qw(Dist::Zilla::MVP::Reader Config::MVP::Reader); } no Moose; __PACKAGE__->meta->make_immutable; 1; __END__