1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168
|
#
# This file is part of Dist-Zilla-Plugin-Git
#
# This software is copyright (c) 2009 by Jerome Quelin.
#
# This is free software; you can redistribute it and/or modify it under
# the same terms as the Perl 5 programming language system itself.
#
package Dist::Zilla::Plugin::Git::GatherDir;
{
$Dist::Zilla::Plugin::Git::GatherDir::VERSION = '1.121820';
}
# ABSTRACT: gather all tracked files in a Git working directory
use Moose;
use Moose::Autobox;
use MooseX::Types::Path::Class qw(Dir File);
with 'Dist::Zilla::Role::Git::Repo';
extends 'Dist::Zilla::Plugin::GatherDir';
use Git::Wrapper;
use File::Find::Rule;
use File::HomeDir;
use File::Spec;
use List::AllUtils qw(uniq);
use Path::Class;
use namespace::autoclean;
override gather_files => sub {
my ($self) = @_;
my $root = "" . $self->root;
$root =~ s{^~([\\/])}{File::HomeDir->my_home . $1}e;
$root = Path::Class::dir($root);
my $git = Git::Wrapper->new($root);
my @files;
FILE: for my $filename (uniq $git->ls_files) {
my $file = file($filename)->relative($root);
unless ($self->include_dotfiles) {
next FILE if $file->basename =~ qr/^\./;
next FILE if grep { /^\.[^.]/ } $file->dir->dir_list;
}
my $exclude_regex = qr/\000/;
$exclude_regex = qr/$exclude_regex|$_/
for ($self->exclude_match->flatten);
# \b\Q$_\E\b should also handle the `eq` check
$exclude_regex = qr/$exclude_regex|\b\Q$_\E\b/
for ($self->exclude_filename->flatten);
next if $file =~ $exclude_regex;
push @files, $self->_file_from_filename($filename);
}
for my $file (@files) {
(my $newname = $file->name) =~ s{\A\Q$root\E[\\/]}{}g;
$newname = File::Spec->catdir($self->prefix, $newname) if $self->prefix;
$newname = Path::Class::dir($newname)->as_foreign('Unix')->stringify;
$file->name($newname);
$self->add_file($file);
}
return;
};
__PACKAGE__->meta->make_immutable;
no Moose;
1;
__END__
=pod
=head1 NAME
Dist::Zilla::Plugin::Git::GatherDir - gather all tracked files in a Git working directory
=head1 VERSION
version 1.121820
=head1 DESCRIPTION
This is a trivial variant of the L<GatherDir|Dist::Zilla::Plugin::GatherDir>
plugin. It looks in the directory named in the L</root> attribute and adds all
the Git tracked files it finds there (as determined by C<git ls-files>). If the
root begins with a tilde, the tilde is replaced with the current user's home
directory according to L<File::HomeDir>.
Most users just need:
[Git::GatherDir]
...and this will pick up all tracked files from the current directory into the
dist. You can use it multiple times, as you can any other plugin, by providing
a plugin name. For example, if you want to include external specification
files into a subdir of your dist, you might write:
[Git::GatherDir]
; this plugin needs no config and gathers most of your files
[Git::GatherDir / SpecFiles]
; this plugin gets all tracked files in the root dir and adds them under ./spec
root = ~/projects/my-project/spec
prefix = spec
=head1 ATTRIBUTES
=head2 root
This is the directory in which to look for files. If not given, it defaults to
the dist root -- generally, the place where your F<dist.ini> or other
configuration file is located.
=head2 prefix
This parameter can be set to gather all the files found under a common
directory. See the L<description|DESCRIPTION> above for an example.
=head2 include_dotfiles
By default, files will not be included if they begin with a dot. This goes
both for files and for directories relative to the C<root>.
In almost all cases, the default value (false) is correct.
=head2 follow_symlinks
By default, directories that are symlinks will not be followed. Note on the
other hand that in all followed directories, files which are symlinks are
always gathered.
=head2 exclude_filename
To exclude certain files from being gathered, use the C<exclude_filename>
option. This may be used multiple times to specify multiple files to exclude.
=head2 exclude_match
This is just like C<exclude_filename> but provides a regular expression
pattern. Files matching the pattern are not gathered. This may be used
multiple times to specify multiple patterns to exclude.
=for Pod::Coverage gather_dir
gather_files
=head1 AUTHOR
Jerome Quelin
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2009 by Jerome Quelin.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut
|