Skip to content

Commit

Permalink
intial import
Browse files Browse the repository at this point in the history
Signed-off-by: Chris Granger <ibdknox@gmail.com>
  • Loading branch information
ibdknox committed Apr 28, 2011
0 parents commit 55879b1
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .gitignore
@@ -0,0 +1,5 @@
pom.xml
*jar
/lib/
/classes/
.lein-deps-sum
13 changes: 13 additions & 0 deletions README
@@ -0,0 +1,13 @@
# clj-socketio

FIXME: write description

## Usage

FIXME: write

## License

Copyright (C) 2011 FIXME

Distributed under the Eclipse Public License, the same as Clojure.
5 changes: 5 additions & 0 deletions project.clj
@@ -0,0 +1,5 @@
(defproject clj-socketio "0.1.0"
:description "A clojure wrapper around the netty-socket-io implementation."
:dependencies [[org.clojure/clojure "1.2.1"]]
:dev-dependencies [[lein-clojars "0.6.0"]])

1 change: 1 addition & 0 deletions src/clj_socketio/core.clj
@@ -0,0 +1 @@
(ns clj-socketio.core)
6 changes: 6 additions & 0 deletions test/clj_socketio/test/core.clj
@@ -0,0 +1,6 @@
(ns clj-socketio.test.core
(:use [clj-socketio.core])
(:use [clojure.test]))

(deftest replace-me ;; FIXME: write
(is false "No tests have been written."))

0 comments on commit 55879b1

Please sign in to comment.