Skip to content

Commit e709afe

Browse files
committed
Switch to codox for api docs
1 parent 518a3fb commit e709afe

File tree

3 files changed

+15
-7
lines changed

3 files changed

+15
-7
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ target
44
lib
55
classes
66
autodoc/**
7+
doc/**

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ or more conveniently:
7070
## Documentation
7171

7272
[Annotated source](http:/hugoduncan.github.com/clj-ssh/uberdoc.html).
73+
[API](http:/hugoduncan.github.com/clj-ssh/api/0.3/index.html).
7374

7475
## FAQ
7576

project.clj

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,18 @@
11
(defproject clj-ssh "0.3.1-SNAPSHOT"
2-
:description "ssh from clojure"
2+
:description "Library for using SSH from clojure."
33
:dependencies [[org.clojure/clojure "1.2.0"]
44
[org.clojure/tools.logging "0.1.2"]
5-
[slingshot "0.10.0"]
5+
[slingshot "0.2.0"]
66
[com.jcraft/jsch "0.1.44-1"]]
77
:dev-dependencies [[log4j/log4j "1.2.14"]]
8-
:autodoc {:name "clj-ssh"
9-
:description "Library for using SSH from clojure."
10-
:copyright "Copyright Hugo Duncan 2010, 2011. All rights reserved."
11-
:web-src-dir "http://github.com/hugoduncan/clj-ssh/blob/"
12-
:web-home "http://hugoduncan.github.com/clj-ssh/"})
8+
:multi-deps {"slingshot-0.10.1" [[slingshot "0.10.1"]
9+
[org.clojure/clojure "1.2.1"]]
10+
"clojure-1.2.1" [[slingshot "0.10.1"]
11+
[org.clojure/clojure "1.2.1"]]
12+
"clojure-1.3.0" [[slingshot "0.10.1"]
13+
[org.clojure/clojure "1.3.0"]]
14+
"clojure-1.4.0" [[slingshot "0.10.1"]
15+
[org.clojure/clojure "1.4.0-beta1"]]}
16+
:codox {:writer codox-md.writer/write-docs
17+
:version "0.3"
18+
:output-dir "doc/api/0.3"})

0 commit comments

Comments
 (0)