nrepl-ritz setup (missing dependency "dynapath")

2013-02-18 Thread Dima B
Hi, I've been going through all the instruction on the nrepl-ritz page (https://github.com/pallet/ritz/tree/develop/nrepl) as well as nrepl-ritz threads and I can't seem to get it working due to a mysterious dependency problem on dynapath. M-x nrepl-ritz-jack-in results in Starting nREPL ritz

Re: nrepl-ritz setup (missing dependency "dynapath")

2013-02-18 Thread Dima B
Duncan wrote: > > Dima B > writes: > > > I've been going through all the instruction on the nrepl-ritz page > > (https://github.com/pallet/ritz/tree/develop/nrepl) as well as > nrepl-ritz > > threads and I can't seem to get it working due to a mysterious &

Re: nrepl-ritz setup (missing dependency "dynapath")

2013-02-18 Thread Dima B
I confirm that the issue is fixed. Thank you, guys! On Monday, February 18, 2013 3:39:37 PM UTC-8, Hugo Duncan wrote: > > Toby Crawley > writes: > > > Hugo Duncan writes: > >> > >> The latter is fine by me. It is about time we had another ritz release > for > >> nrepl.el 1.6 anyway. > >

ClojureScript: catching all javascript exceptions

2012-09-28 Thread Dima B
Hi, I came to the point where I need to be able to catch all javascript exceptions, log them down and swallow. I've been trying to achieve this by (try ... (catch Exception e ...)) (try ... (catch nil e ...)) (try ... (catch js/object e ...)) and nothing seems to do the trick. Could you please

Re: Starting a new ClojureScript project, where to start?

2012-09-30 Thread Dima B
Hi Daniel, CljsBuild is a good starting point https://github.com/emezeske/lein-cljsbuild It automatically sets up environment with latest cljs version and gives complete framework with compilation, auto-compilation, support of multiple projects, sharing code between clj and cljs. Also take a l