-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbe-it.asd
50 lines (49 loc) · 1.44 KB
/
be-it.asd
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
(defsystem "be-it"
:version "0.1.0"
:author "David Rueda"
:license "GPLv3"
:serial t
:depends-on (#:spinneret
#:hunchentoot
#:snooze
#:dexador
#:cl-json
#:clack
#:fset
#:str
#:mito
#:sxql
#:unix-opts
#:trivia
#:alexandria
#:closer-mop)
:components ((:module "src"
:components
((:file "packages")
(:file "alists")
(:file "jsons")
(:file "hm")
(:file "data")
(:file "memoize")
(:file "pipe")
(:file "mop")
(:file "dao")
(:file "dto")
(:file "api")
(:file "be-it")
(:file "dev.mocks")
(:file "web-site")
(:file "services"))))
:description "The Free custom CV compatible with all other CV/jobs plateform."
:in-order-to ((test-op (test-op "be-it/tests"))))
(defsystem "be-it/tests"
:author "David Rueda"
:license "GPLv3"
:depends-on ("be-it"
"rove")
:components ((:module "tests"
:components
((:file "jsons")
(:file "api-handlers"))))
:description "Test system for be-it"
:perform (test-op (op c) (symbol-call :rove :run c)))