-
Notifications
You must be signed in to change notification settings - Fork 0
/
colombia-tribal.asd
52 lines (51 loc) · 1.63 KB
/
colombia-tribal.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
51
52
(defsystem "colombia-tribal"
:version "0.1.0"
:author "David Rueda / Maria Jose Alarcon Albornoz"
: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 "resources")
(:file "interactive-text-book")
(:file "game")
(:file "dao")
(:file "dto")
(:file "api")
(:file "html")
(:file "web-site")
(:file "services"))))
:description "The Free custom CV compatible with all other CV/jobs plateform."
:in-order-to ((test-op (test-op "colombia-tribal/tests"))))
(defsystem "colombia-tribal/tests"
:author "David Rueda / Maria Jose Alarcon Albornoz"
:license "GPLv3"
:depends-on ("colombia-tribal"
"rove")
:components ((:module "tests"
:components
((:file "jsons")
(:file "api-handlers"))))
:description "Test system for colombia-tribal"
:perform (test-op (op c) (symbol-call :rove :run c)))