Skip to content

Commit

Permalink
Add author / maintainer info to asd
Browse files Browse the repository at this point in the history
 * The example in the readme failed on CCL because of a missing kw-arg
   to a signal. added that slot to hopefully make everything happy there

thanks Devon Sean McCullough
  • Loading branch information
bobbysmith007 committed Jul 14, 2016
1 parent be09d1b commit a191a11
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
4 changes: 4 additions & 0 deletions collectors.asd
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@
pulled from arnesi into its own library and stripped of dependencies"
:licence "BSD"
:version "0.1"
:author "Marco Baringer, Russ Tyndall <[email protected]>"
:maintainer "Russ Tyndall <[email protected]>"
:components ((:file "collectors"))
:depends-on (:alexandria :closer-mop))

Expand All @@ -20,6 +22,8 @@
pulled from arnesi into its own library"
:licence "BSD"
:version "0.1"
:author "Marco Baringer, Russ Tyndall <[email protected]>"
:maintainer "Russ Tyndall <[email protected]>"
:components ((:module :tests
:serial t
:components ((:file "collectors"))))
Expand Down
7 changes: 5 additions & 2 deletions collectors.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
(cl:defpackage :collectors-signals
(:export
;; signals and restarts
#:aggregating #:skip #:new-value #:value #:aggregator
#:aggregating #:skip #:new-value #:value #:aggregator #:after-values
#:done-aggregating #:aggregate))

(cl:defpackage :collectors
Expand Down Expand Up @@ -53,7 +53,10 @@
:initarg :aggregator :initform nil)))

(define-condition collectors-signals:done-aggregating ()
((collectors-signals:aggregate
((collectors-signals:after-values
:accessor collectors-signals:after-values
:initarg :after-values :initform nil)
(collectors-signals:aggregate
:accessor collectors-signals:aggregate
:initarg :aggregate :initform nil)
(collectors-signals:aggregator
Expand Down

0 comments on commit a191a11

Please sign in to comment.