Re: Clojure namespace dependencies - cdeps

2010-11-01 Thread Luke Renn
Good stuff. The ivy branch of cake has something similar but only works at the dependency module level (not the namespace level). http://github.com/lrenn/cake/wiki/Ivy Luke On Nov 1, 2:44 am, ka wrote: > Few months back I started working on a project which already had 10k > lines of Clojure co

Re: Improving Contrib

2010-10-19 Thread Luke Renn
rom mvn repo using ivy, etc. I use gradle to pull both > the current clojure and clojure-contrib all the time. > > > > > > > > > > On Tue, Oct 19, 2010 at 12:22 PM, Luke Renn wrote: > > Please consider Ivy.  It's what Gradle uses and does dependency

Re: Improving Contrib

2010-10-19 Thread Luke Renn
Please consider Ivy. It's what Gradle uses and does dependency management better than Maven does. http://ant.apache.org/ivy/ http://ant.apache.org/ivy/features.html Thanks, Luke On Oct 19, 12:12 pm, Rich Hickey wrote: > On Oct 19, 12:04 pm, Wilson MacGyver wrote: > > > How should we as users

Re: clojure-cake

2010-10-08 Thread Luke Renn
On Oct 8, 5:47 am, Sunil S Nandihalli wrote: > Hello everybody, >  I am trying to use cake .. was just exploring it with a very simple default > > >> cake new expcake > >> cake deps > > but cake deps gives me the following error > > http://gist.github.com/616564 This is mostly a guess, but take a

Re: Simple things should be simple

2010-09-09 Thread Luke Renn
On Sep 9, 5:53 pm, Lee Spector wrote: > On Sep 9, 2010, at 3:04 PM, Luke Renn wrote: > > > What exactly are you evaluating Clojure for?  Because unless it's > > teaching elementary school children, the LOC it takes to deploy a > > hello world webapp is irrele

Re: Simple things should be simple

2010-09-09 Thread Luke Renn
On Sep 9, 2:46 pm, Mike Meyer wrote: > I have to compile and link it first. Not a problem. My 3/0/1 solution > could just as well have been: > > $ cat - > hello.c > main() { >      puts("Content-type: text/plain\n\nHello world!\n") ; >      } > ^D > $ cc hello.c > $ cp a.out /usr/local/apache22/cg

Re: Simple things should be simple

2010-09-09 Thread Luke Renn
On Sep 9, 4:13 pm, Mike Meyer wrote: > Here I thought I could save time by choosing a nice, simple example > application that everyone would understand, rather than spending a lot > of time explaining (or abstracting out) irrelevant details of some > real-world application before asking the questi

Re: Simple things should be simple

2010-09-09 Thread Luke Renn
On Sep 9, 1:40 pm, Mike Meyer wrote: > The thing is, I'm evaluating clojure - that's what drags clojure into > it. What exactly are you evaluating Clojure for? Because unless it's teaching elementary school children, the LOC it takes to deploy a hello world webapp is irrelevant. Luke -- You

Re: Lein adding repos

2009-11-27 Thread Luke Renn
On Nov 27, 12:40 pm, David Nolen wrote: > Is there currently a simple way to add new maven2 repos to download from? I haven't done it, but looking at the code you just add :repositories [[id url]] to your project.clj. Luke -- You received this message because you are subscribed to the Google G

Re: Emacs clojure mode: how to set current directory & classpath

2009-07-28 Thread Luke Renn
On Jul 28, 5:15 am, Baishampayan Ghose wrote: > Is there any way for me to just put the JAR files somewhere and get them > added to the classpath? Put them in a lib/ folder at your project root. Luke --~--~-~--~~~---~--~~ You received this message because you are

Re: Emacs clojure mode: how to set current directory & classpath

2009-07-20 Thread Luke Renn
On Jul 20, 3:25 pm, Phil Hagelberg wrote: > Basically: > > * Source under src/ > * Tests under test/ > * AOT bytecode under target/classes/ > * Dependencies all unpacked together under target/dependency/ > > Since I use the same conventions for every single project, I never have > to change my cl

Re: Clojure goes Git!

2009-06-17 Thread Luke Renn
If you're looking for a git/github workflow I can't recommend the following post enough: http://blog.mhartl.com/2008/10/14/setting-up-your-git-repositories-for-open-source-projects-at-github/ I use something similar to (barely) contribute to compojure. There isn't anything like his 'edge' branc