From 2c75a754fdddb3e46e5eed95abacbcfc70334fe7 Mon Sep 17 00:00:00 2001 From: colin Date: Wed, 28 Dec 2022 09:16:40 -0800 Subject: Rename: dungeons-and-deadlines to dnd --- api.lisp | 2 +- dnd.asd | 27 +++++++++++++++++++++++++++ dnd.lisp | 3 +++ dungeons-and-deadlines.asd | 27 --------------------------- dungeons-and-deadlines.lisp | 3 --- init.lisp | 2 +- model.lisp | 2 +- package.lisp | 2 +- routes.lisp | 2 +- serialization.lisp | 2 +- utilities.lisp | 2 +- 11 files changed, 37 insertions(+), 37 deletions(-) create mode 100644 dnd.asd create mode 100644 dnd.lisp delete mode 100644 dungeons-and-deadlines.asd delete mode 100644 dungeons-and-deadlines.lisp diff --git a/api.lisp b/api.lisp index 8159a1c..cecacb4 100644 --- a/api.lisp +++ b/api.lisp @@ -1,6 +1,6 @@ ;;;; api.lisp -- http routes for dnd -(in-package :dungeons-and-deadlines) +(in-package :dnd) (lzb:provision-app (api) :title "Dungeons & Deadlines" diff --git a/dnd.asd b/dnd.asd new file mode 100644 index 0000000..66b924b --- /dev/null +++ b/dnd.asd @@ -0,0 +1,27 @@ +;;;; dnd.asd + +(asdf:defsystem #:dnd + :description "Describe dnd here" + :author "Your Name " + :license "Specify license here" + :version "0.0.1" + :serial t + :depends-on (#:lazybones + #:lazybones-hunchentoot + #:bknr.datastore + #:spinneret + #:swank + #:alexandria + #:cl-ppcre + #:lass + #:parenscript + #:derrida + #:ironclad + #:jonathan) + :components ((:file "package") + (:file "utilities") + (:file "init") + (:file "model") + (:file "serialization") + (:file "api") + (:file "dnd"))) diff --git a/dnd.lisp b/dnd.lisp new file mode 100644 index 0000000..a5cb0a4 --- /dev/null +++ b/dnd.lisp @@ -0,0 +1,3 @@ +;;;; dnd.lisp + +(in-package #:dnd) diff --git a/dungeons-and-deadlines.asd b/dungeons-and-deadlines.asd deleted file mode 100644 index 0380db9..0000000 --- a/dungeons-and-deadlines.asd +++ /dev/null @@ -1,27 +0,0 @@ -;;;; dungeons-and-deadlines.asd - -(asdf:defsystem #:dungeons-and-deadlines - :description "Describe dungeons-and-deadlines here" - :author "Your Name " - :license "Specify license here" - :version "0.0.1" - :serial t - :depends-on (#:lazybones - #:lazybones-hunchentoot - #:bknr.datastore - #:spinneret - #:swank - #:alexandria - #:cl-ppcre - #:lass - #:parenscript - #:derrida - #:ironclad - #:jonathan) - :components ((:file "package") - (:file "utilities") - (:file "init") - (:file "model") - (:file "serialization") - (:file "api") - (:file "dungeons-and-deadlines"))) diff --git a/dungeons-and-deadlines.lisp b/dungeons-and-deadlines.lisp deleted file mode 100644 index 881eb20..0000000 --- a/dungeons-and-deadlines.lisp +++ /dev/null @@ -1,3 +0,0 @@ -;;;; dungeons-and-deadlines.lisp - -(in-package #:dungeons-and-deadlines) diff --git a/init.lisp b/init.lisp index 5603623..535da6c 100644 --- a/init.lisp +++ b/init.lisp @@ -1,6 +1,6 @@ ;;;; init.lisp -(in-package #:dungeons-and-deadlines) +(in-package #:dnd) (defun init-db (&optional config) (if config diff --git a/model.lisp b/model.lisp index 1c1b1cc..8605ace 100644 --- a/model.lisp +++ b/model.lisp @@ -2,7 +2,7 @@ -(in-package :dungeons-and-deadlines) +(in-package :dnd) (deftype title () `(member :noob)) diff --git a/package.lisp b/package.lisp index f7d0143..2c7bff8 100644 --- a/package.lisp +++ b/package.lisp @@ -1,6 +1,6 @@ ;;;; package.lisp -(defpackage #:dungeons-and-deadlines +(defpackage #:dnd (:use #:cl) (:local-nicknames (#:db #:bknr.datastore) (#:idx #:bknr.indices) diff --git a/routes.lisp b/routes.lisp index 7d98c74..56b6191 100644 --- a/routes.lisp +++ b/routes.lisp @@ -1,6 +1,6 @@ ;;;; routes.lisp -- http routes for dnd -(in-package :dungeons-and-deadlines) +(in-package :dnd) (lzb:provision-app (api) :title "Dungeons & Deadlines" diff --git a/serialization.lisp b/serialization.lisp index 7066712..6579b92 100644 --- a/serialization.lisp +++ b/serialization.lisp @@ -2,7 +2,7 @@ -(in-package :dungeons-and-deadlines) +(in-package :dnd) (defun hall-of-fame-hero-view (hero) (json:to-json diff --git a/utilities.lisp b/utilities.lisp index dd4455c..b6cf16a 100644 --- a/utilities.lisp +++ b/utilities.lisp @@ -1,6 +1,6 @@ ;;;; utilities -- nuff said -(in-package :dungeons-and-deadlines) +(in-package :dnd) (let ((host (uiop:hostname)) -- cgit v1.2.3