Re: clojure.contrib.repl-utils/show breaks with NoSubMethodError

2011-11-25 Thread Sean Corfield
On Fri, Nov 25, 2011 at 5:09 PM, Curious Fox wrote: > Do you know by any chance is there any equivalent to > clojure.contrib.repl-utils/show in the new set of libraries? > > I.e. is there a standard and recommended way to inspect all object's > properties and methods in REPL? Take a look at cloju

Re: clojure.contrib.repl-utils/show breaks with NoSubMethodError

2011-11-25 Thread Curious Fox
Oh, I see. Do you know by any chance is there any equivalent to clojure.contrib.repl-utils/show in the new set of libraries? I.e. is there a standard and recommended way to inspect all object's properties and methods in REPL? Thanks again, - F On Nov 25, 4:44 pm, Sean Corfield wrote: > On F

Re: clojure.contrib.repl-utils/show breaks with NoSubMethodError

2011-11-25 Thread Sean Corfield
On Fri, Nov 25, 2011 at 3:00 PM, Curious Fox wrote: > I keep running into NoSuchMethodError on any call to > clojure.contrib.repl-utils/show in REPL with clojure 1.3.0: The old contrib libraries are, for the most part, deprecated and not guaranteed to work with Clojure 1.3.0. See http://dev.cloj

clojure.contrib.repl-utils/show breaks with NoSubMethodError

2011-11-25 Thread Curious Fox
Hi, I keep running into NoSuchMethodError on any call to clojure.contrib.repl-utils/show in REPL with clojure 1.3.0: $ lein repl => (use 'clojure.contrib.repl-utils) ;; bunch of warnings skipped => (clojure.contrib.repl-utils/show 1) NoSuchMethodError clojure.lang.Numbers.lt(Ljava/lang/Object;I

Re: contrib.duck-streams or contrib.io?

2011-11-25 Thread Sean Corfield
On Thu, Nov 24, 2011 at 9:20 PM, Daniel Glauser wrote: > I starting to do some simple file IO stuff with Clojure and was > wondering which namespace was considered the best one to use, > contrib.duck-streams on contrib.io? duck-streams was deprecated a while back I believe and didn't make it into

Re: (refer '[clojure.core :exclude [==]])

2011-11-25 Thread cej38
I was getting the same error when I tried to use (:refer [clojure.core :exclude [==]]) in a name space definition. The following worked. On Nov 25, 10:55 am, Tassilo Horn wrote: > > user> (ns core-logic-playground >          (:refer-clojure :exclude [==]) >          (:use clojure.core.logic))

Re: (refer '[clojure.core :exclude [==]])

2011-11-25 Thread Tassilo Horn
cej38 writes: Hi, > REPL started; server listening on localhost port 19922 > user=> (refer '[clojure.core :exclude [==]]) > ClassCastException clojure.lang.PersistentVector cannot be cast to > clojure.lang.Symbol clojure.core/find-ns (core.clj:3657) The syntax is wrong. You probably want (

Re: (refer '[clojure.core :exclude [==]])

2011-11-25 Thread Baishampayan Ghose
> I used lein to create a new project.  Here is my project.clj file: > > (defproject SUDOKU_CLOJURE "0.01" >  :description "My superduper SUDOKU solver." >  :dependencies [[org.clojure/clojure "1.3.0"] >                 [org.clojure/core.logic "0.6.5"]]) > > > After running "lein deps" I then run "

Problem with Korma and clj-soap

2011-11-25 Thread Dennis Crenshaw
So I'm trying to create a drop-in implementation of a SOAP webservice with Clojure. Naturally I look into libraries that accomplish the different bits. I need something to do SQL work with a relational db (Korma, check!) and I need to present a SOAP interface (clj-

(refer '[clojure.core :exclude [==]])

2011-11-25 Thread cej38
I used lein to create a new project. Here is my project.clj file: (defproject SUDOKU_CLOJURE "0.01" :description "My superduper SUDOKU solver." :dependencies [[org.clojure/clojure "1.3.0"] [org.clojure/core.logic "0.6.5"]]) After running "lein deps" I then run "lein repl" a

Re: ClojureScript Repl -- Swank-like workflow with Emacs?

2011-11-25 Thread Wilkes Joiner
That was it! I add , and it seems to work fine now. Back to being hyper-productive. :) -- 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 - pl