Skip to content

Commit 55a019f

Browse files
add a task to clean up the list
1 parent 29267d0 commit 55a019f

File tree

7 files changed

+413
-409
lines changed

7 files changed

+413
-409
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,5 @@ pom.xml.asc
1212
.lein-failures
1313
.nrepl-port
1414
.cpcache/
15+
16+
.idea/*

README.md

+9-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,10 @@
11
# mobads
2-
Ads Domains to block for mobile devices
2+
contains a minimal set of dns domains which should be blocked on mobile device. See dns.txt
3+
4+
# Sanitize
5+
This task going into the list and remove out-of-date entries by checking them with `nslookup`
6+
It requires `babashka` in order to run
7+
8+
```shell
9+
bb sanitize
10+
```

bb.edn

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{:min-bb-version "0.8.0"
2+
:paths ["src" "test"]
3+
:deps {}
4+
5+
:tasks {:requires ([sanitize :as sanitize]
6+
[test-runner :as test])
7+
test test/run-tests
8+
sanitize sanitize/sanitize}
9+
}

0 commit comments

Comments
 (0)