aboutsummaryrefslogtreecommitdiff
path: root/oneliners.api.asd
blob: db307e414d79cc1dc2121f3adea5c6e0819f2e1f (plain)
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 "oneliners.api"
  :version "0.1.0"
  :author "Colin Okay"
  :license "AGPLv3"
  :depends-on ("lazybones-hunchentoot"
               "lazybones-client"
               "bknr.datastore"
               "jonathan"
               "ironclad"
               "uuid"
               "lambda-riffs")
  :components ((:module "src"
                :components
                ((:file "util")
                 (:file "main"))))
  :description ""
  :in-order-to ((test-op (test-op "oneliners.api/tests"))))

(defsystem "oneliners.api/tests"
  :author "Colin Okay"
  :license "AGPLv3"
  :depends-on ("oneliners.api"
               "rove")
  :components ((:module "tests"
                :components
                ((:file "main"))))
  :description "Test system for oneliners.api"
  :perform (test-op (op c) (symbol-call :rove :run c)))