Re: ANN: Clojure live-repl

2009-10-30 Thread Rick Moynihan
2009/10/18 David Powell : > > Hi, > > I just posted a project at . > > It uses the Java Attach API to let you connect a Clojure REPL to any running > Java or Clojure process, without them requiring any special startup. > This is really cool and seems very usef

Re: ANN: Clojure live-repl

2009-10-30 Thread Jeff Rose
Awesome! Thanks a lot. I've been needing this. -Jeff P.S. Maven is annoying. On Oct 18, 6:53 pm, "David Powell" wrote: > Hi, > > I just posted a project at . > > It uses the Java Attach API to let you connect a Clojure REPL to any running > Java or Clojur

Re: ANN: Clojure live-repl

2009-10-29 Thread Ngoc Dao
> I do plan to add a feature so that it loads all jars from a lib directory This is a nice feature! > I don't know anything about maven I'm brand new to maven, but let me introduce some advantages if maven were used. Take http://github.com/ngocdaothanh/telchat-clojure as an example: * Run "mvn

Re: ANN: Clojure live-repl

2009-10-29 Thread David Powell
> * Is it OK if live-repl uses one version of Clojure and the attached > process uses another? It should be fine. I check to see if Clojure is already on the process's classpath. If it isn't a Clojure process, I use the bundled copy of Clojure; if Clojure is already loaded then I just use that

Re: ANN: Clojure live-repl

2009-10-29 Thread ngocdaothanh
I think it would be great if JLine is integrated in live-repl. I have some questions: * Why not use maven and clojure-maven-plugin? * Is it OK if live-repl uses one version of Clojure and the attached process uses another? On Oct 29, 9:35 am, David Powell wrote: > > Under Linux I had to fix th

Re: ANN: Clojure live-repl

2009-10-28 Thread Alex Osborne
David Powell wrote: > >> Under Linux I had to fix the paths in liverepl.sh to include the >> build folder: >> >> java -cp "$LIVEREPL_HOME/build/*:$JDK_HOME/lib/tools.jar" >> net.djpowell.liverepl.client.Main "$CLOJURE_JAR" >> "$LIVEREPL_HOME/build/liverepl-agent.jar" >> "$LIVEREPL_HOME/build/

Re: ANN: Clojure live-repl

2009-10-28 Thread David Powell
> Under Linux I had to fix the paths in liverepl.sh to include the build > folder: > > java -cp "$LIVEREPL_HOME/build/*:$JDK_HOME/lib/tools.jar" > net.djpowell.liverepl.client.Main "$CLOJURE_JAR" > "$LIVEREPL_HOME/build/liverepl-agent.jar" > "$LIVEREPL_HOME/build/liverepl-server.jar" "$@" I thi

Re: ANN: Clojure live-repl

2009-10-28 Thread ronen
Under Linux I had to fix the paths in liverepl.sh to include the build folder: java -cp "$LIVEREPL_HOME/build/*:$JDK_HOME/lib/tools.jar" net.djpowell.liverepl.client.Main "$CLOJURE_JAR" "$LIVEREPL_HOME/build/ liverepl-agent.jar" "$LIVEREPL_HOME/build/liverepl-server.jar" "$@" --~--~-~--~

Re: ANN: Clojure live-repl

2009-10-18 Thread David Powell
> and I can attach, but if the process I attach to exits, I get a > never-ending stream of \xef \xbf \xbf characters: > > 75 73 65 72 3d 3e 20 ef bf bf ef bf bf ef bf bf |user=> > .| > 0010 ef bf bf ef bf bf ef bf bf ef bf bf ef bf bf ef > || > 0020

Re: ANN: Clojure live-repl

2009-10-18 Thread Gorsal
That's very slick. I'm going to use this:) --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are moderated -

Re: ANN: Clojure live-repl

2009-10-18 Thread Michael Wood
2009/10/18 David Powell : > I just posted a project at . > > It uses the Java Attach API to let you connect a Clojure REPL to any running > Java or Clojure process, without them requiring any special startup. That's very cool :) > It probably requires a Sun 1

Re: ANN: Clojure live-repl

2009-10-18 Thread Alex Osborne
David Powell wrote: > It uses the Java Attach API to let you connect a Clojure REPL to any running > Java or Clojure process, without them requiring any special startup. Exceedingly cool! > It probably requires a Sun 1.6 JDK. And currently the startup script is a > batch file, so if anyone ca