bobbin.asd @ 8524e8a06be6 v1.0.0

Version 1.0.0
author Steve Losh <steve@stevelosh.com>
date Sun, 10 Feb 2019 18:15:17 -0500
parents 3f9040eb223f
children 3e34737c4a7e
(asdf:defsystem :bobbin
  :description "Simple (word) wrapping utilities for strings."
  :author "Steve Losh <steve@stevelosh.com>"
  :homepage "https://sjl.bitbucket.io/bobbin/"

  :license "MIT"
  :version "1.0.0"

  :depends-on (:split-sequence)

  :in-order-to ((asdf:test-op (asdf:test-op :bobbin/test)))

  :serial t
  :components ((:file "package")
               (:module "src" :serial t
                :components ((:file "main")))))


(asdf:defsystem :bobbin/test
  :description "Test suite for bobbin"

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

  :depends-on (:bobbin :1am)

  :serial t
  :components ((:file "package.test")
               (:module "test"
                :serial t
                :components ((:file "tests"))))

  :perform (asdf:test-op (op system)
             (funcall (read-from-string "bobbin.test:run-tests"))))