1Dist::Zilla::Role::FileUFsienrdeCro(n3t)ributed Perl DocDuimsetn:t:aZtiilolna::Role::FileFinder(3)
2
3
4
6 Dist::Zilla::Role::FileFinder - something that finds files within the
7 distribution
8
10 version 6.017
11
13 A FileFinder plugin locates files within the distribution. This role
14 exists so that sets of files can be easily described in one
15 configuration section and then used by one or more other plugin.
16
17 Plugins implementing this role must provide a "find_files" method which
18 will be called with no arguments and must return an arrayref of files.
19 (This arrayref should not be re-used, as it may be altered once
20 returned.)
21
22 For example, imagine a simple glob-like FileFinder that expects
23 configuration like this:
24
25 [Glob / RootModules]
26 glob = *.pm
27
28 This sets up a FileFinder named "RootModules" which will contain all pm
29 files in the root directory.
30
31 Another plugin that knows how to use FileFinder plugins might be
32 configured like this:
33
34 [ModuleRelocator]
35 finder = RootModules
36 relocate_to = attic
37
38 Finders may operate on any rules they like, checking file size,
39 content, name, or other properties. They should re-perform their
40 "finding" on each call to "find_files" as the files in the distribution
41 may have changed.
42
44 Ricardo SIGNES 😏 <rjbs@cpan.org>
45
47 This software is copyright (c) 2020 by Ricardo SIGNES.
48
49 This is free software; you can redistribute it and/or modify it under
50 the same terms as the Perl 5 programming language system itself.
51
52
53
54perl v5.32.1 2021-01-27 Dist::Zilla::Role::FileFinder(3)