Skip to content

Commit

Permalink
Initial commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaley committed Aug 25, 2013
0 parents commit 3b870b9
Show file tree
Hide file tree
Showing 16 changed files with 6,584 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
/target
/lib
/classes
/checkouts
pom.xml
pom.xml.asc
*.jar
*.class
.lein-deps-sum
.lein-failures
.lein-plugins
.lein-repl-history
/out
/repl
/resources/public/js/main*js
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# cloc

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.
37 changes: 37 additions & 0 deletions project.clj
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
(defproject cloc "0.1.0-SNAPSHOT"
:description "Serve docs from your classpath to a local web server."
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.5.1"]
[org.clojure/java.classpath "0.2.0"]
[codox/codox.core "0.6.4"]
[hiccup "1.0.4"]
[compojure "1.1.5"]
[ring/ring-core "1.2.0"]
[ring/ring-jetty-adapter "1.2.0"]
[fogus/ring-edn "0.2.0"]
[org.apache.lucene/lucene-core "4.4.0"]
[org.apache.lucene/lucene-analyzers-common "4.4.0"]
[org.apache.lucene/lucene-queryparser "4.4.0"]

[prismatic/dommy "0.1.1"]
[cljs-ajax "0.2.0"]]

:plugins [[lein-cljsbuild "0.3.2"]
[lein-ring "0.8.6"]]

:source-paths ["src/clj"]

:cljsbuild {:repl-listen-port 9000
:repl-launch-commands
{"firefox" ["firefox" "-jsconsole" "http://localhost:1337/debug"]}

:builds
{:dev
{:source-paths ["src/cljs"]
:jar true
:compiler {:output-to "resources/public/js/main-debug.js"
:optimizations :whitespace
:pretty-print true}}}}

:ring {:handler cloc.routes/main})
Loading

0 comments on commit 3b870b9

Please sign in to comment.