-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrestapi.asd
More file actions
28 lines (27 loc) · 846 Bytes
/
Copy pathrestapi.asd
File metadata and controls
28 lines (27 loc) · 846 Bytes
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
(defsystem "restapi"
:version "0.1.0"
:author "Tokuya Kameshima"
:license "MIT"
:depends-on ("alexandria"
"cl-ppcre"
"dexador"
"jonathan"
"jose"
"log4cl"
"quri")
:components ((:module "src"
:components
((:file "restapi" :depends-on ("json"))
(:file "json"))))
:description "A RESTful API Client."
:in-order-to ((test-op (test-op "restapi/tests"))))
;; (defsystem "restapi/tests"
;; :author "Tokuya Kameshima"
;; :license ""
;; :depends-on ("restapi"
;; "rove")
;; :components ((:module "tests"
;; :components
;; ((:file "restapi"))))
;; :description "Test system for restapi"
;; :perform (test-op (op c) (symbol-call :rove :run c)))