This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2015-08-28
Channels
- # admin-announcements (59)
- # aws (27)
- # beginners (42)
- # boot (22)
- # cider (5)
- # clojure (97)
- # clojure-australia (3)
- # clojure-italy (2)
- # clojure-japan (9)
- # clojure-russia (81)
- # clojure-sg (2)
- # clojurescript (86)
- # clojutre (1)
- # cloxp (2)
- # cursive (60)
- # datomic (24)
- # docs (1)
- # editors (1)
- # emacs (17)
- # hoplon (57)
- # instaparse (1)
- # jobs (11)
- # ldnclj (19)
- # re-frame (1)
- # reagent (3)
- # spacemacs (7)
- # testing (8)
- # yada (127)
if boot show -p
shows e.g. this for clojure
[?] org.clojure/clojure
? 1.8.0-alpha4
org.clojure/clojure
? 1.7.0
cljs-ajax
org.clojure/clojurescript
? 1.6.0
reagent
? 1.5.1
compojure
? 1.4.0
org.clojure/core.async
org.clojure/java.jdbc
? 1.3.0
ring/ring-defaults
? 1.2.1
hiccup
what am I going to get in an uberjar? All of them? Newest?anyway, what would be the result of uberjaring when show -p shows this? Would all three libs be included? The latest one?
guys can you suggest api testing libs from clojure i am using pedestal with friend as web framework and suggestion for unit-testing and datomic query testing
Is it possible to call tasks from within a handler? I'd like to do something like
(deftask foo ""
[]
(fn [next-handler]
(fn [fileset]
(some-task))))
I know what I wrote doesn't work, but is there a way to do that from within a handler? When I tried it, I was getting errors because the task was trying (understably) to parse command line args.I tried using @martinklepsch ’s suggestion here: https://gist.github.com/2df6cc9d1c007ad7d6de , but those env keys didn’t persist into the test environment.