1
0
Fork 0
Browse Source

create project files.

unstable
Craig Oates 3 years ago
parent
commit
00ba38f3b0
  1. 1
      .gitignore
  2. 2
      LICENSE
  3. 4
      README.md
  4. 4
      doc/package.lisp
  5. 3
      doc/ritherdon-rest-doc.lisp
  6. 32
      ritherdon-rest.asd
  7. 4
      src/package.lisp
  8. 5
      src/ritherdon-rest.lisp
  9. 4
      tests/package.lisp
  10. 3
      tests/ritherdon-rest-tests.lisp

1
.gitignore vendored

@ -17,3 +17,4 @@
*.wx64fsl
*.wx32fsl
/.directory

2
LICENSE

@ -1,4 +1,4 @@
MIT License Copyright (c) <year> <copyright holders>
MIT License Copyright (c) 2021 Craig Oates
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal

4
README.md

@ -1,3 +1,3 @@
# ritherdon-rest
# Ritherdon REST
A CLI program which grabs data from the Return to Ritherdon project's REST API server.
A CLI program which grabs data from the Return to Ritherdon project's REST API server.

4
doc/package.lisp

@ -0,0 +1,4 @@
;;;; package.lisp
(defpackage #:ritherdon-rest-doc
(:use #:cl))

3
doc/ritherdon-rest-doc.lisp

@ -0,0 +1,3 @@
;;;; ritherdon-rest-doc.lisp
(in-package #:ritherdon-rest-doc)

32
ritherdon-rest.asd

@ -0,0 +1,32 @@
;;;; 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
: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")))

4
src/package.lisp

@ -0,0 +1,4 @@
;;;; package.lisp
(defpackage #:ritherdon-rest
(:use #:cl))

5
src/ritherdon-rest.lisp

@ -0,0 +1,5 @@
;;;; ritherdon-rest.lisp
(in-package #:ritherdon-rest)
(print "The system is up and running.")

4
tests/package.lisp

@ -0,0 +1,4 @@
;;;; package.lisp
(defpackage #:ritherdon-rest-tests
(:use #:cl))

3
tests/ritherdon-rest-tests.lisp

@ -0,0 +1,3 @@
;;;; ritherdon-rest-tests.lisp
(in-package #:ritherdon-rest-tests)