Skip to content

Commit

Permalink
Added gitignore and improved asd file to compile properly when loaded
Browse files Browse the repository at this point in the history
  • Loading branch information
gonzojive committed Jul 14, 2010
1 parent 738a35f commit 7ef12f8
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .gitignore
@@ -1,2 +1,4 @@
*~
*.fasl
*~
\#*
.\#*
14 changes: 13 additions & 1 deletion clws.asd
@@ -1,3 +1,10 @@
(cl:in-package :cl-user)

(defpackage :clws-system
(:use #:cl #:asdf))

(in-package :clws-system)

(defsystem :clws
:depends-on ("sb-concurrency"
"iolib"
Expand All @@ -9,5 +16,10 @@
(:file "client")
(:file "resource")
(:file "read")
(:file "server")))
(:file "server"))
:description "CLWS implement the WebSockets protocol as described by
the latest specification draft[1]. Both server and client WebSockets
are implemented.
[1] http://tools.ietf.org/html/draft-hixie-thewebsocketprotocol-76")

0 comments on commit 7ef12f8

Please sign in to comment.