Overhaul and version bump.
[cl-mock.git] / cl-mock.asd
index fac28ae..7b71beb 100644 (file)
@@ -4,22 +4,18 @@
 \f
 (asdf:defsystem #:cl-mock
   :description "Mocking library"
-  :long-description "Mocking library to test plain and generic functions."
+  :long-description "Mocking library to test plain functions (extended
+version)."
   :author "Olof-Joachim Frahm <olof@macrolet.net>"
   :license "Simplified BSD License"
-  :version "0.0.1"
+  :version "1.0.0"
   #+asdf-unicode :encoding #+asdf-unicode :utf-8
-  :depends-on (#:closer-mop #:alexandria #:arnesi)
+  :depends-on (#:cl-mock-basic #:closer-mop #:alexandria #:optima)
   :in-order-to ((asdf:test-op (asdf:load-op #:cl-mock-tests)))
   :perform (asdf:test-op :after (op c)
              (funcall (find-symbol (symbol-name '#:run!) '#:fiveam)
                       (find-symbol (symbol-name '#:cl-mock) '#:cl-mock-tests)))
   :serial T
-  :components ((:static-file "README.md")
-               (:module "src"
+  :components ((:module "src"
                 :components
-                ((:file "package")
-                 (:file "functions")
-                 (:file "mock")
-                 (:file "methods")
-                 (:file "facade")))))
+                ((:file "facade")))))