Skip to content

Commit

Permalink
Initial commit of new lein project
Browse files Browse the repository at this point in the history
  • Loading branch information
KushalP committed Apr 9, 2012
0 parents commit 8791fcd
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .gitignore
@@ -0,0 +1,8 @@
/pom.xml
*jar
/lib
/classes
/native
/.lein-failures
/checkouts
/.lein-deps-sum
13 changes: 13 additions & 0 deletions README
@@ -0,0 +1,13 @@
# camelot

FIXME: write description

## Usage

FIXME: write

## License

Copyright (C) 2012 FIXME

Distributed under the Eclipse Public License, the same as Clojure.
3 changes: 3 additions & 0 deletions project.clj
@@ -0,0 +1,3 @@
(defproject camelot "1.0.0-SNAPSHOT"
:description "FIXME: write description"
:dependencies [[org.clojure/clojure "1.3.0"]])
1 change: 1 addition & 0 deletions src/camelot/core.clj
@@ -0,0 +1 @@
(ns camelot.core)
6 changes: 6 additions & 0 deletions test/camelot/test/core.clj
@@ -0,0 +1,6 @@
(ns camelot.test.core
(:use [camelot.core])
(:use [clojure.test]))

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

0 comments on commit 8791fcd

Please sign in to comment.