From 00ba38f3b069ef2d9104fa33de61264b33fbf851 Mon Sep 17 00:00:00 2001 From: Craig Oates Date: Mon, 28 Jun 2021 23:11:46 +0100 Subject: [PATCH] create project files. --- .gitignore | 1 + LICENSE | 2 +- README.md | 4 ++-- doc/package.lisp | 4 ++++ doc/ritherdon-rest-doc.lisp | 3 +++ ritherdon-rest.asd | 32 ++++++++++++++++++++++++++++++++ src/package.lisp | 4 ++++ src/ritherdon-rest.lisp | 5 +++++ tests/package.lisp | 4 ++++ tests/ritherdon-rest-tests.lisp | 3 +++ 10 files changed, 59 insertions(+), 3 deletions(-) create mode 100644 doc/package.lisp create mode 100644 doc/ritherdon-rest-doc.lisp create mode 100644 ritherdon-rest.asd create mode 100644 src/package.lisp create mode 100644 src/ritherdon-rest.lisp create mode 100644 tests/package.lisp create mode 100644 tests/ritherdon-rest-tests.lisp diff --git a/.gitignore b/.gitignore index bf4db1e..0b1df27 100644 --- a/.gitignore +++ b/.gitignore @@ -17,3 +17,4 @@ *.wx64fsl *.wx32fsl +/.directory diff --git a/LICENSE b/LICENSE index 204b93d..1723fbb 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -MIT License Copyright (c) +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 diff --git a/README.md b/README.md index 0fb9a43..445c55a 100644 --- a/README.md +++ b/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. \ No newline at end of file +A CLI program which grabs data from the Return to Ritherdon project's REST API server. diff --git a/doc/package.lisp b/doc/package.lisp new file mode 100644 index 0000000..0b30ecb --- /dev/null +++ b/doc/package.lisp @@ -0,0 +1,4 @@ +;;;; package.lisp + +(defpackage #:ritherdon-rest-doc + (:use #:cl)) diff --git a/doc/ritherdon-rest-doc.lisp b/doc/ritherdon-rest-doc.lisp new file mode 100644 index 0000000..2240d71 --- /dev/null +++ b/doc/ritherdon-rest-doc.lisp @@ -0,0 +1,3 @@ +;;;; ritherdon-rest-doc.lisp + +(in-package #:ritherdon-rest-doc) diff --git a/ritherdon-rest.asd b/ritherdon-rest.asd new file mode 100644 index 0000000..98585b9 --- /dev/null +++ b/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"))) diff --git a/src/package.lisp b/src/package.lisp new file mode 100644 index 0000000..ce42963 --- /dev/null +++ b/src/package.lisp @@ -0,0 +1,4 @@ +;;;; package.lisp + +(defpackage #:ritherdon-rest + (:use #:cl)) diff --git a/src/ritherdon-rest.lisp b/src/ritherdon-rest.lisp new file mode 100644 index 0000000..33ac6b8 --- /dev/null +++ b/src/ritherdon-rest.lisp @@ -0,0 +1,5 @@ +;;;; ritherdon-rest.lisp + +(in-package #:ritherdon-rest) + +(print "The system is up and running.") diff --git a/tests/package.lisp b/tests/package.lisp new file mode 100644 index 0000000..f05f57d --- /dev/null +++ b/tests/package.lisp @@ -0,0 +1,4 @@ +;;;; package.lisp + +(defpackage #:ritherdon-rest-tests + (:use #:cl)) diff --git a/tests/ritherdon-rest-tests.lisp b/tests/ritherdon-rest-tests.lisp new file mode 100644 index 0000000..039b5cf --- /dev/null +++ b/tests/ritherdon-rest-tests.lisp @@ -0,0 +1,3 @@ +;;;; ritherdon-rest-tests.lisp + +(in-package #:ritherdon-rest-tests)