Re: [ANN] Gorilla REPL 0.3.3 - inline docs, CIDER compatibility

2014-09-18 Thread Borkdude
+1 for the feature to connect to an external nREPL session! -- 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 - please be patient with your

Re: [ANN] Gorilla REPL 0.3.3 - inline docs, CIDER compatibility

2014-09-02 Thread Jony Hudson
On Tuesday, 2 September 2014 01:36:49 UTC+1, Beau Fabry wrote: Just a little bit of showing off of the previous post :-) http://i.imgur.com/zpfP9Ja.png Nice! Would love to hear more about how you use it. I've only tinkered with Hadoop locally, so I'm very fuzzy on the concepts - you need to

Re: [ANN] Gorilla REPL 0.3.3 - inline docs, CIDER compatibility

2014-09-02 Thread Beau Fabry
A client library may be another option, I haven't looked into it. Off the top of my head I doubt the cascalog code distribution for the m/r jobs would work with any clients. This is akin to deploying new code to run on the cluster, in this case via a repl, so I don't think any existing API is

[ANN] Gorilla REPL 0.3.3 - inline docs, CIDER compatibility

2014-09-01 Thread Jony Hudson
Hi all, there's a new version of Gorilla REPL out :-) The headline feature is that the autocomplete UI now shows the docs for the function you're typing/lets you browse the docs. It's really handy! Autocomplete itself is also much improved, courtesy of the compliment library. This version

Re: [ANN] Gorilla REPL 0.3.3 - inline docs, CIDER compatibility

2014-09-01 Thread Jony Hudson
Ohh, and there are some new docs on how to use Gorilla alongside your favourite editor/IDE: http://gorilla-repl.org/editors.html Jony -- 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

Re: [ANN] Gorilla REPL 0.3.3 - inline docs, CIDER compatibility

2014-09-01 Thread Beau Fabry
Started looking into Gorilla for use at work today. Even prior to this release I was incredibly impressed. Amazing work everyone involved. On Monday, September 1, 2014 9:12:49 PM UTC+10, Jony Hudson wrote: Ohh, and there are some new docs on how to use Gorilla alongside your favourite

Re: [ANN] Gorilla REPL 0.3.3 - inline docs, CIDER compatibility

2014-09-01 Thread Bozhidar Batsov
vim-fireplace uses cider-nrepl (when available, otherwise it will fallback to evaling inlined code) as well, so the Emacs rules should apply for it. — Cheers,  Bozhidar On September 1, 2014 at 2:12:53 PM, Jony Hudson (jonyepsi...@gmail.com) wrote: Ohh, and there are some new docs on how to use

Re: [ANN] Gorilla REPL 0.3.3 - inline docs, CIDER compatibility

2014-09-01 Thread Bozhidar Batsov
On September 1, 2014 at 2:11:40 PM, Jony Hudson (jonyepsi...@gmail.com) wrote: Hi all,  there's a new version of Gorilla REPL out :-) The headline feature is that the autocomplete UI now shows the docs for the function you're typing/lets you browse the docs. It's really handy! Autocomplete

Re: [ANN] Gorilla REPL 0.3.3 - inline docs, CIDER compatibility

2014-09-01 Thread Jony Hudson
On Monday, 1 September 2014 13:16:36 UTC+1, Bozhidar Batsov wrote: Thanks! :-) You might also find the var-info middleware quite useful - cider and fireplace use it for code navigation and enhanced documentation (eldoc and a replacement for (doc something) that works for both

Re: [ANN] Gorilla REPL 0.3.3 - inline docs, CIDER compatibility

2014-09-01 Thread Lee Spector
On Sep 1, 2014, at 7:15 AM, Beau Fabry imf...@gmail.com wrote: Started looking into Gorilla for use at work today. Even prior to this release I was incredibly impressed. Amazing work everyone involved. inc The new docs feature is a thing of beauty. -Lee -- You received this message

Re: [ANN] Gorilla REPL 0.3.3 - inline docs, CIDER compatibility

2014-09-01 Thread Stuart Halloway
Hi Jony, Is there a path for using Gorilla REPL from a maven or gradle project? Thanks, Stu On Mon, Sep 1, 2014 at 7:11 AM, Jony Hudson jonyepsi...@gmail.com wrote: Hi all, there's a new version of Gorilla REPL out :-) The headline feature is that the autocomplete UI now shows the docs

Re: [ANN] Gorilla REPL 0.3.3 - inline docs, CIDER compatibility

2014-09-01 Thread Jony Hudson
Beau, Lee - thanks for the kind words - glad you're enjoying it! Stu - I've no experience of running Clojure under either maven or gradle, but my guess is that it won't work out-of-the-box yet. Currently, Gorilla launches by using Leiningen to run its own server process in the classpath of the

Re: [ANN] Gorilla REPL 0.3.3 - inline docs, CIDER compatibility

2014-09-01 Thread Stuart Halloway
Hi Jony, A feature allowing connection to an external nREPL server would be great, and totally usable by anyone who can make a CLASSPATH. Having to install a particular build system (whether gradle, lein, or maven) in order to use a tool is a non-starter for 90% of the projects I am involved

Re: [ANN] Gorilla REPL 0.3.3 - inline docs, CIDER compatibility

2014-09-01 Thread Stuart Halloway
And now, answering part of my own question. It appears the following almost just works from a maven project that references gorilla: (require '[gorilla-repl.core :as gorilla]) (gorilla/run-gorilla-server {:port 8990}) The only problem is that gorilla's declaration of its own dependencies

Re: [ANN] Gorilla REPL 0.3.3 - inline docs, CIDER compatibility

2014-09-01 Thread Gary Trakhman
It works inside of lein because lein adds REPL-y to the classpath of the project, which adds clojure-complete. Cider used to be coupled to this before we gutted it. On Mon, Sep 1, 2014 at 4:56 PM, Stuart Halloway stuart.hallo...@gmail.com wrote: And now, answering part of my own question. It

Re: [ANN] Gorilla REPL 0.3.3 - inline docs, CIDER compatibility

2014-09-01 Thread Jony Hudson
Ahh, nice, yes that's a simple way to do it if you can manage to add the code somewhere. Regarding the dependencies - Leiningen adds both of the dependencies you list. I did declare them explicitly at one point, but I recall having some odd error, so I decided to take them back out rather than

Re: [ANN] Gorilla REPL 0.3.3 - inline docs, CIDER compatibility

2014-09-01 Thread Stuart Halloway
Hi Jony, I sent you a pull request. I believe adding those items is correct and necessary for producing a usable JAR, and that the build works so long as you have a recent version of leiningen. Stu On Mon, Sep 1, 2014 at 5:04 PM, Jony Hudson jonyepsi...@gmail.com wrote: Ahh, nice, yes

Re: [ANN] Gorilla REPL 0.3.3 - inline docs, CIDER compatibility

2014-09-01 Thread Beau Fabry
For what it's worth we're using Gorilla *after* leiningen. Leiningen is used to make an uberjar, but then we start the gorilla server in our own main. This is because we're running gorilla inside of our hadoop environment. This way we have a gorilla instance that can issue live cascalog

Re: [ANN] Gorilla REPL 0.3.3 - inline docs, CIDER compatibility

2014-09-01 Thread Beau Fabry
Just a little bit of showing off of the previous post :-) http://i.imgur.com/zpfP9Ja.png On Tuesday, September 2, 2014 9:36:50 AM UTC+10, Beau Fabry wrote: For what it's worth we're using Gorilla *after* leiningen. Leiningen is used to make an uberjar, but then we start the gorilla server in