summaryrefslogtreecommitdiff
path: root/nullbot.asd
diff options
context:
space:
mode:
Diffstat (limited to 'nullbot.asd')
-rw-r--r--nullbot.asd28
1 files changed, 28 insertions, 0 deletions
diff --git a/nullbot.asd b/nullbot.asd
new file mode 100644
index 0000000..033d589
--- /dev/null
+++ b/nullbot.asd
@@ -0,0 +1,28 @@
+(defsystem "nullbot"
+ :version "0.0.1"
+ :author "Andrei Șova"
+ :license "MIT"
+ :depends-on (:com.inuoe.jzon
+ :dexador
+ :bordeaux-threads
+ :cl-hash-util
+ :quri
+ :flexi-streams
+ :split-sequence)
+ :components ((:module "src"
+ :components
+ ((:file "api")
+ (:file "main" :depends-on ("api")))))
+ :description "A bot for nullring on matrix"
+ :in-order-to ((test-op (test-op "nullbot/tests"))))
+
+(defsystem "nullbot/tests"
+ :author "Andrei Șova"
+ :license "MIT"
+ :depends-on (:nullbot
+ :rove)
+ :components ((:module "tests"
+ :components
+ ((:file "main"))))
+ :description "Test system for nullbot"
+ :perform (test-op (op c) (symbol-call :rove :run c)))