All Projects → funcool → boot-codeina

funcool / boot-codeina

Licence: Unknown, EPL-1.0 licenses found Licenses found Unknown LICENSE EPL-1.0 LICENSE.epl10
Beautiful api documentation generator for Clojure.

Programming Languages

clojure
4091 projects
CSS
56736 projects

boot-codeina

[funcool/boot-codeina "0.1.0-SNAPSHOT"]

Tasks for generate beautiful api reference documentation for the boot Clojure build tool

Usage

Add boot-codeina to your build.boot dependencies and require the namespace:

(set-env! :dependencies '[[funcool/boot-codeina "0.1.0-SNAPSHOT" :scope "test"]])
(require '[funcool.boot-codeina :refer :all])

(task-options!
 apidoc {:version "0.1.0"
         :title "MyPackage name"
         :sources #{"src"}
         :description "MyPackage description"})

And now, execute the apidoc task:

$ boot apidoc
Generated HTML docs in /home/user/yourproject/doc/api

You can get the detailed information passing -h parameter to the apidoc task:

$ boot apidoc -h
Generate beautiful api documentation.

Options:
  -h, --help              Print this help info.
  -t, --title TITLE       Set the project title to TITLE.
  -s, --sources SOURCES   Conj SOURCES onto sources to read.
  -d, --description DESC  Set the project description to DESC.
  -v, --version VERSION   Set the project version to VERSION.
  -i, --include INCLUDE   Conj INCLUDE onto include concrete namespaces.
  -x, --exclude EXCLUDE   Conj EXCLUDE onto exclude concrete namespaces.
  -f, --format FORMAT     Set docstring format to FORMAT.
  -o, --target OUTDIR     Set the output directory to OUTDIR.
  -n, --root ROOTDIR      Set the project root directory to ROOTDIR.
  -u, --src-uri SRCURI    Set source code uri to SRCURI.
  -w, --writer WRITER     Set documentation writer to WRITER.
  -r, --reader READER     Set source reader to READER.

Examples

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].