chancery.asd @ d6aa232e6306

Add `create-...` functions, clean up RNG system, add a test suite
author Steve Losh <steve@stevelosh.com>
date Fri, 23 Jun 2017 13:28:48 +0000
parents 2153d3a110dd
children 25f05d94b336
(asdf:defsystem :chancery
  :description "A library for procedurally generating text, inspired by Tracery."

  :author "Steve Losh <steve@stevelosh.com>"

  :license "MIT"
  :version "1.0.0"

  :depends-on (:named-readtables)

  :in-order-to ((asdf:test-op (asdf:test-op :chancery.test)))

  :serial t
  :components ((:module "vendor" :serial t
                :components ((:file "quickutils-package")
                             (:file "quickutils")))
               (:file "package")
               (:module "src" :serial t
                :components ((:file "readtable")
                             (:file "chancery")))))