This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2017-03-06
Channels
- # architecture (25)
- # bangalore-clj (1)
- # beginners (21)
- # boot (45)
- # cljs-dev (38)
- # clojure (272)
- # clojure-austin (7)
- # clojure-finland (7)
- # clojure-france (3)
- # clojure-italy (7)
- # clojure-japan (1)
- # clojure-russia (13)
- # clojure-spec (36)
- # clojure-uk (31)
- # clojurescript (96)
- # core-async (15)
- # cursive (16)
- # datascript (3)
- # datomic (97)
- # emacs (107)
- # hoplon (16)
- # jobs (9)
- # keechma (1)
- # luminus (1)
- # off-topic (19)
- # om (39)
- # onyx (15)
- # pedestal (3)
- # planck (22)
- # protorepl (4)
- # re-frame (20)
- # reagent (3)
- # ring-swagger (25)
- # specter (26)
- # test-check (19)
- # testing (1)
- # untangled (381)
Hi all. Can one “require” a non planck core namespace into planck? In my case, instaparse.
In my case, I am launching planck from within my (boot) project directory.
For that project, I have “required” instaparse via build.boot.
Assuming the jar has been downloaded at “boot dev” time and must now be somewhere within system. Haven’t looked into that but thanks for the hint. Will search.
Planck needs to somehow be told where to look for source. The mechanisms are documented here: http://planck-repl.org/dependencies.html
Clear. Yes. Now trying to determine where “retrieved” jars are stashed. Assuming this will be the path I will have to provide to planck.
Excellent.
Thanks.
And yes, was under .m2
Now having to deal with the 692 errors reported at require time inside planck but it’s a start. 🙂
Possibly. Not a light lib.
Seems like a wee-bit of overkill when all I want to is turn a string with embedded brackets into a vector (of keywords and/or sub-vectors).
Genre…
”a b (c d)”
into [:a :b [:c :d]]
But so far this is what I have been pointed towards and it does make sense.
It’s parsing after all. 🙂