Initial commit
This commit is contained in:
commit
592a8fd2d8
6
.gitignore
vendored
Normal file
6
.gitignore
vendored
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
pom.xml
|
||||||
|
*jar
|
||||||
|
/lib/
|
||||||
|
/classes/
|
||||||
|
.lein-failures
|
||||||
|
.lein-deps-sum
|
13
README.md
Normal file
13
README.md
Normal 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
4
project.clj
Normal 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"]])
|
Reference in a new issue