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
|
(build|make-pod|clean|make-errors|run)\.pl
blib/.*
.gitignore
.git/.*
Makefile$
pm_to_blib
MYMETA..*
.*\.bak
^Json3-[0-9.]/$
^Json3-[0-9.]\.tar\.gz$
^Parse.(?:c|o|bs)$
^peek\.pl$
^test-empty-string\.pl$
^xt/.*
^lib/JSON/Parse\.pod\.tmpl$
^Parse\.bs$
# Can download from github if needed.
benchmarks
# Spurious build guff
^makeitfile$
# Corefiles, a.out sometimes get into the distribution.
^.*\.core$
^a\.out$
# There aren't any files I plan to distribute with these file types.
^[^/]*\.pl$
^[^/]*\.txt$
# Don't put the "torture test" code into the CPAN distribution. It
# contains bad stuff like "setjmp" which is incompatible with many
# people's operating systems. People who want this kind of stuff can
# get it from the repository.
^Json3-random-test\.c$
^(?:json-)?random-test\.c$
^random-test$
^randomjson\.pl$
# Don't add the UTF-8 test code to the repo:
^utf8test/.*$
# Makefile for C random stuff
^randmakefile$
# Not necessary or useful for CPAN
^FILES$
# Design document directory, no use to put on CPAN.
^doc/.*$
#
^examples/.*-out\.txt$
# Template for POD
^lib/JSON/Tokenize\.pod\.tmpl$
^lib/JSON/Whitespace\.pod\.tmpl$
# Obsolete files
^obsolete/.*$
# Author version change script
^versionup\.pl$
# CI control files
^\.travis\.yml$
^build/.*$
# These are used to make the documentation.
^see-also-info\.json$
^modules\.pl$
# Local variables:
# comment-start: "#"
# End:
|