Merge branch 'current/for_cpan_index' into current/dq
[dbsrgits/DBIx-Class.git] / maint / Makefile.PL.inc / 21_meta_noindex.pl
1 print "Appending to the no_index META list\n";
2
3 # Deprecated/internal modules need no exposure when building the meta
4 no_index directory => $_ for (qw|
5   lib/DBIx/Class/Admin
6   lib/DBIx/Class/PK/Auto
7   lib/DBIx/Class/CDBICompat
8   lib/DBIx/Class/_TempExtlib
9   maint
10 |);
11 no_index package => $_ for (qw/
12   DBIx::Class::Storage::DBIHacks
13   DBIx::Class::Storage::BlockRunner
14   DBIx::Class::Carp
15   DBIx::Class::_Util
16   DBIx::Class::_TempExtlib
17   DBIx::Class::ResultSet::Pager
18 /);
19
20 # keep the Makefile.PL eval happy
21 1;