Re: [ANN] Clojure 1.8.0-RC3

2015-12-14 Thread Beau Fabry
@Brian no, is an issue with reduce-fsm (which is fixed) https://github.com/cdorrat/reduce-fsm/issues/9 On Tuesday, December 15, 2015 at 9:42:01 AM UTC+11, Brian Marick wrote: > > Noam: does this mean it's not an issue with Midje? If it is, I'll look > into it. > > Noam Ben-Ari wrote: > >

Re: [ANN] Clojure 1.8.0-RC3

2015-12-14 Thread Ted McFadden
Hi, Finally had some time to try out 1.8RC3. No issues or changes in behaviour from our 1.7 production system observed in limited testing. Cheers, Ted On Tuesday, December 8, 2015 at 7:36:25 AM UTC+10, Alex Miller wrote: > > Just a reminder that this is a release candidate - that means that

Re: Clojure on an Erlang-vm-os on Xen?

2015-12-14 Thread Wade Moschetti
How has this progressed. Really interested in using Phoenix/Elixir, Datomic and Om together. On Friday, September 18, 2015 at 2:06:04 AM UTC+10, Fergal Byrne wrote: > > Hi Juan/Frank, > > Elixir has taken the key features of Clojure (especially macros, > protocols) and used them to build a

[ANN] packthread 0.1.8

2015-12-14 Thread Jason Felice
Changes: * Allow fn+>'s first arg to be destructuring. packthread "Smarter" threading macros. Why? Because every time you've wanted to: (-> 42 (let [x 79] (+ x) inc) but clojure wouldn't let you. +>

Re: Flow control in Clojure

2015-12-14 Thread dmichulke
The ring middleware has and solves this problem by using functions like this: (defn wrap-params [handler] (fn [req] (handler req))) So, basically you just have a function that takes a request and returns a response. This function is called a handler

Re: [ANN] Clojure 1.8.0-RC3

2015-12-14 Thread Brian Marick
Noam: does this mean it's not an issue with Midje? If it is, I'll look into it. Noam Ben-Ari wrote: After upgrading to [reduce-fsm "0.1.4"] all my tests pass with RC3 :-) On Tuesday, December 8, 2015 at 3:14:21 PM UTC+2, Noam Ben-Ari wrote: Thanks for the prompt response, I have filed a

Re: [ANN] Clojure 1.8.0-RC3

2015-12-14 Thread Noam Ben-Ari
Brian: it's not an issue with Midje. On Tuesday, December 15, 2015, Brian Marick wrote: > Noam: does this mean it's not an issue with Midje? If it is, I'll look > into it. > > Noam Ben-Ari wrote: > >> After upgrading to [reduce-fsm "0.1.4"] all my tests pass with RC3 :-) >>