Re: lein-midje-lazytest

2012-11-11 Thread Stuart Sierra
Hi, I have not continued development of Lazytest, but I took most of the code-reloading parts and refactored them into tools.namespace 0.2.x: https://github.com/clojure/tools.namespace tools.namespace might make a better foundation for a development tool. Thanks for your interest in Lazytest.

lein-midje-lazytest

2012-11-10 Thread Hoàng Minh Thắng
I've just notice that running Midje on top of lazytest is much faster compared to start leiningen each time. But adding lazytest takes some time, too. So I re-packaging lazytest and then make a meta-package for both Midje and lazytest. Now all we have to do is: Add [lein-midje-lazytest 0.1.0

Re: Leiningen2 + lein-midje + lazytest question

2012-06-12 Thread Jacek Laskowski
On Mon, Jun 11, 2012 at 9:52 PM, Cédric Pineau cedric.pin...@gmail.com wrote: Also, can someone point me to a ~/lein/profiles.clj sample or a complete lein2 documentation ? Just to add to Phil's answer: The profiles in lein2 are just a map (obviously, isn't it?) where the key is the name of

Re: Leiningen2 + lein-midje + lazytest question

2012-06-12 Thread Phil Hagelberg
On Mon, Jun 11, 2012 at 1:46 PM, Phil Hagelberg p...@hagelb.org wrote: On Mon, Jun 11, 2012 at 12:52 PM, Cédric Pineau cedric.pin...@gmail.com wrote: My question is with the lazy-test dependency. Do I really have to put it as a project dependency ? It doesn't seem to be on the lein-midje

Re: Leiningen2 + lein-midje + lazytest question

2012-06-12 Thread Daniel E. Renfer
Lazytest? I know the answer would probably be needing a lein-midje-lazytest artifact that adds that support, but that seems overkill. -- 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: Leiningen2 + lein-midje + lazytest question

2012-06-12 Thread Phil Hagelberg
On Tue, Jun 12, 2012 at 9:11 AM, Daniel E. Renfer duck112...@gmail.com wrote: The issue here is that Midje and lein-midje don't need Lazytest for normal operation, only for the --lazytest support. What would be the proper way to specify that dependency without requiring that everyone that uses

Leiningen2 + lein-midje + lazytest question

2012-06-11 Thread Cédric Pineau
I just manage to get the lazytest facility of lein-midje I used with lein1 back with lein2 : (defproject hands-on 0.1.0-SNAPSHOT :repositories {stuart http://stuartsierra.com/maven2} :dependencies [[org.clojure/clojure 1.4.0] [midje 1.4.0]

Re: Leiningen2 + lein-midje + lazytest question

2012-06-11 Thread Phil Hagelberg
On Mon, Jun 11, 2012 at 12:52 PM, Cédric Pineau cedric.pin...@gmail.com wrote: My question is with the lazy-test dependency. Do I really have to put it as a project dependency ? It doesn't seem to be on the lein-midje path when puting it in the dev-dependencies.. If it's required for