Open
Description
Hey there!
I installed via bbin
and couldn't quite figure out how to make use of this from a CLI args perspective (probably bbin does allow me to call ns functions?) but then also ran into an exception running it
~/c/b/o/xxx (main|⚡3) quickdoc --source-paths "src/cljc/xx/xx/common/utils.cljc"
----- Error --------------------------------------------------------------------
Type: java.io.FileNotFoundException
Message: Could not locate borkdude/quickdoc.bb, borkdude/quickdoc.clj or borkdude/quickdoc.cljc on classpath.
Location: <expr>:1:10
----- Context ------------------------------------------------------------------
1: (ns user (:require [borkdude.quickdoc])) (apply borkdude.quickdoc/-main *command-line-args*)
^--- Could not locate borkdude/quickdoc.bb, borkdude/quickdoc.clj or borkdude/quickdoc.cljc on classpath.
bbin -v
Version: 0.2.4
bbin ls
bin version location
──────── ─────── ────────────────────────────────────────
quickdoc v0.2.3 https://github.com/borkdude/quickdoc.git
So there's two issues here:
- The exception above
- CLI usage unclear (maybe @eval can help?)
Cheers 🙏
Activity
borkdude commentedon Dec 18, 2024
Could be a bug in bbin? If you do
cat $(which quickdoc)
you should be able to debug the script...borkdude commentedon Dec 18, 2024
Ah, the namepace structure isn't
borkdude.quickdoc
butquickdoc.api
borkdude commentedon Dec 18, 2024
I wonder where bbin gets this from... Any ideas @rads ?
borkdude commentedon Dec 18, 2024
@martinklepsch This seems to work:
and then:
Perhaps this needs to be removed from the documentation though since it seems a bit cumbersome to use it like this.