Commit | Line | Data |
---|---|---|
6882de2b | 1 | ^(?!script/|examples/|lib/|inc/|t/|Makefile.PL$|README$|MANIFEST$|Changes$|META.yml$) |
2 | ||
3 | ||
9f19b1d6 | 4 | # Avoid version control files. |
5 | \bRCS\b | |
6 | \bCVS\b | |
7 | ,v$ | |
8 | \B\.svn\b | |
ec8c4bf2 | 9 | \B\.git\b |
10 | \B\.gitignore\b | |
11 | \b_darcs\b | |
9f19b1d6 | 12 | |
13 | # Avoid Makemaker generated and utility files. | |
14 | \bMakefile$ | |
15 | \bblib | |
16 | \bMakeMaker-\d | |
17 | \bpm_to_blib$ | |
18 | \bblibdirs$ | |
19 | ^MANIFEST\.SKIP$ | |
20 | ||
4f2ebb1e | 21 | # for developers only :) |
22 | ^TODO$ | |
23209c44 | 23 | ^Features_09$ |
4f2ebb1e | 24 | |
9f19b1d6 | 25 | # Avoid Module::Build generated and utility files. |
26 | \bBuild$ | |
27 | \b_build | |
28 | ||
29 | # Avoid temp and backup files. | |
30 | ~$ | |
31 | \.tmp$ | |
32 | \.old$ | |
33 | \.bak$ | |
3e110410 | 34 | \..*?\.sw[po]$ |
9f19b1d6 | 35 | \#$ |
36 | \b\.# | |
37 | ||
7b601771 | 38 | # avoid OS X finder files |
39 | \.DS_Store$ | |
40 | ||
9f19b1d6 | 41 | # Don't ship the test db |
42 | ^t/var | |
43 | ||
ddab752c | 44 | # Don't ship the last dist we built :) |
45 | \.tar\.gz$ | |
0009fa49 | 46 | |
47 | # Skip maint stuff | |
48 | ^maint/ | |
ce4c07df | 49 | |
23209c44 | 50 | # Avoid patch remnants |
4cc0c352 | 51 | \.orig$ |
23209c44 | 52 | \.rej$ |
ca83d811 | 53 | |
e9188247 | 54 | # Dont use Module::Build anymore |
a2800991 | 55 | ^Build.PL$ |