1
0
Fork 0
A CLI program which grabs data from the Return to Ritherdon project's REST API server.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
 

33 lines
936 B

;;;; ritherdon-rest.asd
(asdf:defsystem #:ritherdon-rest
:description "Grabs data from the Return to Ritherdon project REST
API and prints out the results."
:author "craig@craigoates.net"
:license "MIT"
:version "0.0.1"
:serial t
:pathname "src/"
:components ((:file "package")
(:file "ritherdon-rest")))
(asdf:defsystem #:ritherdon-rest/tests
:description "The test suite for the ritherdon-rest project."
:author "craig@craigoates.net"
:license "MIT"
:version "0.0.1"
:serial t
:depends-on (#:fiveam)
:pathname "tests/"
:components ((:file "package")
(:file "ritherdon-rest-tests")))
(asdf:defsystem #:ritherdon-rest/doc
:description "The doc's package for the ritherdon-rest project."
:author "craig@craigoates.net"
:license "MIT"
:version "0.0.1"
:serial t
:pathname "doc/"
:components ((:file "package")
(:file "ritherdon-rest-doc")))