Re: Midje 1.1 released (testing tool)

2011-04-05 Thread Ambrose B
Great work Brian! One thing I was confused about in the 1.1-betas was the boolean return value of tests seemed random. ie. tests that pass don't always return true. Is this still the case? -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to t

Re: Adding jar to classpath in REPL

2011-03-31 Thread Ambrose B
One alternative to this would be to start a Nailgun server. You can add to the classpath quite easily. That said, this looks pretty interesting. Ambrose On Thu, Mar 31, 2011 at 8:19 PM, Vitaly Peressada wrote: > Wanted to add jar to classpath without restarting REPL. Recalled java > reflection

Re: fixing web docs

2011-03-30 Thread Ambrose B
On Wed, Mar 30, 2011 at 5:28 PM, Nick Zbinden wrote: > > Dare I mention the idea of an official (or semi-official) Clojure > documentation project that ties together the disparate sources that > currently exist? What say you, community? > > I was thinking about something. This is just an idea spi

Re: I understand metadata now!

2011-03-25 Thread Ambrose B
On Fri, Mar 25, 2011 at 11:48 PM, James Reeves wrote: > > (defprotocol Identifiable >(id [self] "Return an object's unique id")) > > (deftype DBRef [db-id data] >Identifiable >(id [_] db-id) >clojure.lang.IDeref >(deref [_] data)) > > (defn db-ref [id data] >(DBRef. id d

Re: Web/Screenscraping Library?

2011-03-07 Thread Ambrose B
If the website serves RDF, you can use Plaza https://github.com/antoniogarrote/clj-plaza Just from a casual browse of UM Online LIbrary, some of their pages are in RDFa. Ambrose -- You received this message because you are subscribed to the Google Gr