Re: Lein uberjar hangs when swank is required in the namespace.

2011-05-06 Thread J.R. Garcia
Are you sure you really want/need swank as a dependency? If you just need to run swank for interactive development put it in dev- dependencies. On May 6, 12:22 pm, Trastabuga wrote: > Hi > > I got a problem including swank into the project. > I created a simple test project with "lein new test" >

Re: ANN: Jark 0.3 (using the nrepl protocol)

2011-05-06 Thread Ambrose Bonnaire-Sergeant
Hi Paul, We haven't started on a VimClojure nREPL fork yet. We should probably ask Meikel if he's already tackled it, there is a "nrepl" tag on bitbucket but it's about 6 months old. https://bitbucket.org/kotarak/vimclojure/overview Thanks, Ambr

Re: ANN: Jark 0.3 (using the nrepl protocol)

2011-05-06 Thread Paul deGrandis
Out of curiosity, have you finished adapting Jark for use with VimClojure? I'd love to have a Jark+nREPL+VimClojure stack for editing. Paul On May 6, 12:48 pm, Chas Emerick wrote: > It's great to see nREPL being used for such things. > > FYI, I just released nREPL 0.0.5, adding Clojure 1.3.0 a

Re: ANN: Jark 0.3 (using the nrepl protocol)

2011-05-06 Thread Chas Emerick
It's great to see nREPL being used for such things. FYI, I just released nREPL 0.0.5, adding Clojure 1.3.0 alpha compatibility: https://github.com/clojure/tools.nrepl Do let me know if you have any difficulties, questions, etc. There's also now an issue tracker: http://dev.clojure.org/jira/bro

Re: Eval destroys equality

2011-05-06 Thread Dominikus
On May 6, 8:39 pm, Adam Burry wrote: > On May 6, 3:10 pm, Andy Fingerhut wrote: > > > Caveat: The following fact may already be well known to those discussing > > this issue, and I may not be clear on the goal of this effort. > > > If the goal is to have functions compare as equal whenever they

Re: Eval destroys equality

2011-05-06 Thread Adam Burry
On May 6, 3:10 pm, Andy Fingerhut wrote: > Caveat: The following fact may already be well known to those discussing this > issue, and I may not be clear on the goal of this effort. > > If the goal is to have functions compare as equal whenever they are > equivalent in some sense, then that is an

Lein uberjar hangs when swank is required in the namespace.

2011-05-06 Thread Trastabuga
Hi I got a problem including swank into the project. I created a simple test project with "lein new test" And modified the project.clj and core.clj files so they look like: project.clj: (defproject test "1.0.0-SNAPSHOT" :description "FIXME: write description" :main test.core :dependencies [

Re: Eval destroys equality

2011-05-06 Thread Andy Fingerhut
Caveat: The following fact may already be well known to those discussing this issue, and I may not be clear on the goal of this effort. If the goal is to have functions compare as equal whenever they are equivalent in some sense, then that is an undecidable problem, even if the two functions ar

Re: problem running tests in leiningen

2011-05-06 Thread Islon Scherer
Thanks Stuart, the tests are working now. On May 6, 12:16 pm, Stuart Halloway wrote: > > I have a lein project and I'm trying to run my tests with lein test. > > The first problem I had was a class not found error in one of my > > records > > so I put "aot: [namespace.name]" in project.clj. > > I

Re: [clojure-jark-dev] RE: Jark 0.3 (using the nrepl protocol)

2011-05-06 Thread Ambrose Bonnaire-Sergeant
Hi Shoeb, The correct command is jark install not jark self install Isaac just updated it on the website, you might have missed it. Ambrose On Fri, May 6, 2011 at 9:41 PM, Bhinderwala, Shoeb < sabhinderw...@wellington.com> wrote: > I am trying to install jark on a Linux server and running

Re: problem running tests in leiningen

2011-05-06 Thread Stuart Halloway
> I have a lein project and I'm trying to run my tests with lein test. > The first problem I had was a class not found error in one of my > records > so I put "aot: [namespace.name]" in project.clj. > It's required that I put all namespaces that contain defrecords/ > deftypes in the aot list? This

Re: Search for a node querying on attrs

2011-05-06 Thread Islon Scherer
This is what I did: (let [nodes (html/html-resource (StringReader. body)) meta-extractor (fn [m attr] (first (filter #(= (-> % :attrs :name) attr) m))) metas (html/select nodes [:meta]) title (-> (meta-extractor metas "title") :attrs :content) desc (-> (meta-extractor m

RE: Jark 0.3 (using the nrepl protocol)

2011-05-06 Thread Bhinderwala, Shoeb
I am trying to install jark on a Linux server and running into issues. I am trying to follow the exact instructions as mentioned on the website: http://icylisper.in/jark/start.html I added the following bin directory to my PATH variable: /home/BhindSA/bin I downloaded jark-0.3 and copied it to

problem running tests in leiningen

2011-05-06 Thread Islon Scherer
I have a lein project and I'm trying to run my tests with lein test. The first problem I had was a class not found error in one of my records so I put "aot: [namespace.name]" in project.clj. It's required that I put all namespaces that contain defrecords/ deftypes in the aot list? After that I tri