Re: what's up with user.clj?

2010-09-21 Thread Laurent PETIT
2010/9/21 Laurent PETIT > 2010/9/21 Phil Hagelberg > > On Mon, Sep 20, 2010 at 10:07 PM, Kevin Downey wrote: >> > On Mon, Sep 20, 2010 at 7:33 PM, Robert McIntyre wrote: >> >> If it is to be deprecated, is there a "correct" way of achieving the >> >> same result (having things automatically lo

Re: what's up with user.clj?

2010-09-21 Thread Laurent PETIT
2010/9/21 Phil Hagelberg > On Mon, Sep 20, 2010 at 10:07 PM, Kevin Downey wrote: > > On Mon, Sep 20, 2010 at 7:33 PM, Robert McIntyre wrote: > >> If it is to be deprecated, is there a "correct" way of achieving the > >> same result (having things automatically loaded when you create the > >> re

Re: what's up with user.clj?

2010-09-20 Thread Phil Hagelberg
On Mon, Sep 20, 2010 at 10:07 PM, Kevin Downey wrote: > On Mon, Sep 20, 2010 at 7:33 PM, Robert McIntyre wrote: >> If it is to be deprecated, is there a "correct" way of achieving the >> same result (having things automatically loaded when you create the >> repl?) > > user.clj is very useful, I'd

Re: what's up with user.clj?

2010-09-20 Thread Kevin Downey
user.clj is very useful, I'd rather keep it. On Mon, Sep 20, 2010 at 7:33 PM, Robert McIntyre wrote: > If it is to be deprecated, is there a "correct" way of achieving the > same result (having things automatically loaded when you create the > repl?) > > --Robert McIntyre > > On Mon, Sep 20, 2010

Re: what's up with user.clj?

2010-09-20 Thread Robert McIntyre
If it is to be deprecated, is there a "correct" way of achieving the same result (having things automatically loaded when you create the repl?) --Robert McIntyre On Mon, Sep 20, 2010 at 11:59 AM, Laurent PETIT wrote: > BTW, shouldn't this "user.clj" trick be marked as deprecated, to be removed >

Re: what's up with user.clj?

2010-09-20 Thread Laurent PETIT
BTW, shouldn't this "user.clj" trick be marked as deprecated, to be removed in a future version ? 2010/9/19 Kevin Downey > you can also run into issues with things being on the classpath for > your project, but not being on the classpath for lein, but user.clj > being on the classpath for both,

Re: what's up with user.clj?

2010-09-18 Thread Kevin Downey
you can also run into issues with things being on the classpath for your project, but not being on the classpath for lein, but user.clj being on the classpath for both, so when lein runs it can't find things your user.clj tries to load On Sat, Sep 11, 2010 at 8:17 AM, Stuart Sierra wrote: > Don't

Re: what's up with user.clj?

2010-09-11 Thread Stuart Sierra
Don't know if this is the source of the problem, but your "use" syntax is funky. You want: (use '[clojure.java.javadoc :only (javadoc)]) -S On Sep 11, 3:51 am, Robert McIntyre wrote: > In the clojure getting started guide, it says that if user.clj is > found on the classpath, then that f

what's up with user.clj?

2010-09-11 Thread Robert McIntyre
In the clojure getting started guide, it says that if user.clj is found on the classpath, then that file will be evaluated and the repl will start with any modifications made from that file. My directory structure looks like this /src/user.clj /src/rlm/quick.clj /lib/*all-my-jars* I have a funct