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 169
|
use 5.008;
use strict;
use warnings;
use utf8;
package Path::IsDev::HeuristicSet::Basic;
our $VERSION = '1.001003';
# ABSTRACT: Basic IsDev set of Heuristics
our $AUTHORITY = 'cpan:KENTNL'; # AUTHORITY
use Role::Tiny::With qw( with );
with 'Path::IsDev::Role::HeuristicSet::Simple';
sub negative_heuristics {
return qw( IsDev::IgnoreFile HomeDir PerlINC );
}
sub heuristics {
return qw(
Tool::Dzil Tool::MakeMaker Tool::ModuleBuild
META Changelog TestDir DevDirMarker MYMETA Makefile
VCS::Git
);
}
1;
__END__
=pod
=encoding UTF-8
=head1 NAME
Path::IsDev::HeuristicSet::Basic - Basic IsDev set of Heuristics
=head1 VERSION
version 1.001003
=head1 METHODS
=head2 C<negative_heuristics>
Excluding heuristics in this set are
=over 4
=item 1. L<< C<IsDev::IgnoreFile>|Path::IsDev::NegativeHeuristic::IsDev::IgnoreFile >>
=item 2. L<< C<HomeDir>|Path::IsDev::NegativeHeuristic::HomeDir >>
=item 3. L<< C<PerlINC>|Path::IsDev::NegativeHeuristic::PerlINC >>
=back
=head2 C<heuristics>
Heuristics included in this set:
=over 4
=item 1. L<< C<Tool::Dzil>|Path::IsDev::Heuristic::Tool::Dzil >>
=item 2. L<< C<Tool::MakeMaker>|Path::IsDev::Heuristic::Tool::MakeMaker >>
=item 3. L<< C<Tool::ModuleBuild>|Path::IsDev::Heuristic::Tool::ModuleBuild >>
=item 4. L<< C<META>|Path::IsDev::Heuristic::META >>
=item 5. L<< C<Changelog>|Path::IsDev::Heuristic::Changelog >>
=item 6. L<< C<TestDir>|Path::IsDev::Heuristic::TestDir >>
=item 7. L<< C<DevDirMarker>|Path::IsDev::Heuristic::DevDirMarker >>
=item 8. L<< C<MYMETA>|Path::IsDev::Heuristic::MYMETA >>
=item 9. L<< C<Makefile>|Path::IsDev::Heuristic::Makefile >>
=item 10. L<< C<VCS::Git>|Path::IsDev::Heuristic::VCS::Git >>
=back
=begin MetaPOD::JSON v1.1.0
{
"namespace":"Path::IsDev::HeuristicSet::Basic",
"interface":"single_class",
"does":"Path::IsDev::Role::HeuristicSet::Simple"
}
=end MetaPOD::JSON
=head1 AUTHOR
Kent Fredric <kentnl@cpan.org>
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2017 by Kent Fredric <kentfredric@gmail.com>.
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
|