On Thu, 9 Sep 2010 12:32:27 -0400
David Nolen <[email protected]> wrote:

> On Thu, Sep 9, 2010 at 12:22 PM, Mike Meyer <
> [email protected]> wrote:
> 
> > Clojure great. No questions about that. WAR files, CLASSPATHs, having
> > to wrap *every little command* in it's own script - that's what I'm
> > looking at.
> 
> 
> I've already shown that you don't need WAR files. If you really, really hate

But only if I'm willing to deploy every application in it's own web
server. At least as far as I can tell.  And you lose the robustness of
apache.

> the CLASSPATH you should look at cake. It does require ruby, but it let's
> you essentially write "instant-on" Clojure shell scripts as well as give you
> access to things like the working shell directory if that's the way you want
> to work with Clojure.
> 
>    #!/usr/bin/env cake run
>    (println "Hello world!")

Um,

#!/usr/bin/env clj
(println "Hello world!")

works fine for me. Better yet, if I know I have a running nailgun, I
can do:

#!/usr/bin/env clojure
(println "Hello world!")

(one of these days, I'll patch nailgun to launch itself if it can't
find a server....) And get much quicker responses.

The question now is, how well do all these things interact with each
other?

   <mike
-- 
Mike Meyer <[email protected]>             http://www.mired.org/consulting.html
Independent Network/Unix/Perforce consultant, email for more information.

O< ascii ribbon campaign - stop html mail - www.asciiribbon.org

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to [email protected]
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en

Reply via email to