-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwstest.asd
41 lines (38 loc) · 1.07 KB
/
wstest.asd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#|
This file is a part of wstest project.
Copyright (c) 2017 knobo
|#
#|
Author: knobo
|#
(in-package :cl-user)
(defpackage wstest-asd
(:use :cl :asdf))
(in-package :wstest-asd)
(defsystem wstest
:version "0.1"
:author "knobo"
:license ""
:depends-on (:websocket-driver
:cl-who
:lack
:clack
:lack-middleware-mount
:log4cl
:jonathan)
:components ((:module "src"
:components
((:file "wstest"))))
:description ""
:long-description
#.(with-open-file (stream (merge-pathnames
#p"README.markdown"
(or *load-pathname* *compile-file-pathname*))
:if-does-not-exist nil
:direction :input)
(when stream
(let ((seq (make-array (file-length stream)
:element-type 'character
:fill-pointer t)))
(setf (fill-pointer seq) (read-sequence seq stream))
seq))))