bobbin.asd @ 3f9040eb223f

Initial commit
author Steve Losh <steve@stevelosh.com>
date Sun, 27 May 2018 16:00:53 -0400
parents (none)
children 8524e8a06be6
(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 "0.0.1"

  :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"))))