-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 3b870b9
Showing
16 changed files
with
6,584 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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}) |
Oops, something went wrong.