Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions io.github.cl-sdk.openapi.asd
Original file line number Diff line number Diff line change
@@ -1,8 +1,19 @@
(asdf:defsystem #:io.github.cl-sdk.openapi
:description "Open API Specification for Common Lisp."
:long-description #.(let ((readme (merge-pathnames "README.md"
(or *load-pathname*
*compile-file-pathname*))))
(when (probe-file readme)
(uiop:read-file-string readme)))
:author "cl-sdk"
:maintainer "cl-sdk"
:license "Unlicense"
:homepage "https://github.com/cl-sdk/cl-openapi"
:bug-tracker "https://github.com/cl-sdk/cl-openapi/issues"
:source-control (:git "https://github.com/cl-sdk/cl-openapi")
:version "0.0.1"
:depends-on (#:cl-json)
:in-order-to ((test-op (load-op #:cl-openapi.test)))
:serial t
:components ((:file "package")
(:file "types")
Expand Down
5 changes: 5 additions & 0 deletions io.github.cl-sdk.openapi.test.asd
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
(asdf:defsystem #:io.github.cl-sdk.openapi.test
:description "FiveAM test suite for io.github.cl-sdk.openapi."
:author "cl-sdk"
:maintainer "cl-sdk"
:license "Unlicense"
:homepage "https://github.com/cl-sdk/cl-openapi"
:bug-tracker "https://github.com/cl-sdk/cl-openapi/issues"
:source-control (:git "https://github.com/cl-sdk/cl-openapi")
:version "0.0.1"
:depends-on (#:fiveam
#:io.github.cl-sdk.openapi)
Expand Down
Loading