Skip to content

Commit

Permalink
First commit
Browse files Browse the repository at this point in the history
  • Loading branch information
amalloy committed Feb 22, 2013
0 parents commit d6665d5
Show file tree
Hide file tree
Showing 5 changed files with 43 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
/target
/lib
/classes
/checkouts
pom.xml
*.jar
*.class
.lein-deps-sum
.lein-failures
.lein-plugins
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# websocket

A Clojure library designed to ... well, that part is up to you.

## Usage

FIXME

## License

Copyright © 2013 FIXME

Distributed under the Eclipse Public License, the same as Clojure.
3 changes: 3 additions & 0 deletions doc/intro.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Introduction to websocket

TODO: write [great documentation](http://jacobian.org/writing/great-documentation/what-to-write/)
10 changes: 10 additions & 0 deletions project.clj
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
(defproject org.flatland/hermes "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.4.0"]
[aleph "0.3.0-SNAPSHOT"]
[compojure "1.1.1"]
[ring-middleware-format "0.2.4" :exclusions [ring]]]
:main flatland.hermes.server)
7 changes: 7 additions & 0 deletions test/websocket/core_test.clj
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
(ns websocket.core-test
(:use clojure.test
websocket.core))

(deftest a-test
(testing "FIXME, I fail."
(is (= 0 1))))

0 comments on commit d6665d5

Please sign in to comment.