Initial commit

This commit is contained in:
James Reeves 2012-02-07 22:35:55 +00:00
commit 592a8fd2d8
3 changed files with 23 additions and 0 deletions

6
.gitignore vendored Normal file
View file

@ -0,0 +1,6 @@
pom.xml
*jar
/lib/
/classes/
.lein-failures
.lein-deps-sum

13
README.md Normal file
View file

@ -0,0 +1,13 @@
# ring-server
FIXME: write description
## Usage
FIXME: write
## License
Copyright (C) 2012 FIXME
Distributed under the Eclipse Public License, the same as Clojure.

4
project.clj Normal file
View file

@ -0,0 +1,4 @@
(defproject ring-server "0.1.0"
:description "Library for running Ring web servers"
:dependencies [[org.clojure/clojure "1.2.1"]
[ring "1.0.1"]])