www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 00b034517c0504c3fdd3d5b9d57b418b7ed51784
parent 6f26e5e385281635705be6f8bdee53ccd9f946ed
Author: Alex Knauth <alexander@knauth.org>
Date:   Mon,  4 Jul 2016 17:07:07 -0400

remove dependency on cover, add cover-omit-paths declaration
Diffstat:
Minfo.rkt | 9++++++---
1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/info.rkt b/info.rkt @@ -2,8 +2,11 @@ (define collection 'multi) (define deps '("base" "rackunit-lib" "scribble-lib" "racket-index")) -(define build-deps '("cover" - "cover-coveralls" - "scribble-lib" +(define build-deps '("scribble-lib" "rackunit-lib" "racket-doc")) + +(define cover-omit-paths + '(#rx".*\\.scrbl" + #rx"info\\.rkt" + ))