Re: Getting started with lein-cljsbuild

2012-05-29 Thread Phil Hagelberg
On Mon, May 28, 2012 at 7:10 PM, Evan Mezeske wrote: > I'm not really sure what environment variables have to do with the problem. Leiningen used to check the $CLASSPATH variable, but I don't think anyone had ever used that on purpose; it just caused problems in practice. Going forward (2.0.0-pre

Re: Getting started with lein-cljsbuild

2012-05-28 Thread Evan Mezeske
> > Right, this is a big part of why I think that lein trampoline was at least > part of the culprit. But by ensuring that the project's path didn't > contain a space, and by eliminating all spaces from my environment > variables, lein trampoline repl is now working for me, also lein trampolin

Re: Getting started with lein-cljsbuild

2012-05-28 Thread Mark Engelberg
On Mon, May 28, 2012 at 6:49 PM, Evan Mezeske wrote: > Also, observe that if the project's path contains a space, "lein > trampoline repl" fails as well. > > > Right, this is a big part of why I think that lein trampoline was at least part of the culprit. But by ensuring that the project's path

Re: Getting started with lein-cljsbuild

2012-05-28 Thread Evan Mezeske
Also, observe that if the project's path contains a space, "lein trampoline repl" fails as well. -- 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 that posts from new members are modera

Re: Getting started with lein-cljsbuild

2012-05-28 Thread Mark Engelberg
On Mon, May 28, 2012 at 6:28 PM, Ben Mabey wrote: > I actually hit this same problem with lein-cljsbuild the other day but on > OSx. I had ~/Foo Bar Baz/my-project and it was complaining that the Bar > class could not be found when I tried to use the repl tasks. So, I don't > think it is strict

Re: Getting started with lein-cljsbuild

2012-05-28 Thread Evan Mezeske
This looks like a problem with Leiningen's trampoline feature to me. I edited my ~/bin/lein script, to insert "echo $TRAMPOLINE" before "exec sh -c "exec $TRAMPOLINE", near the end of the file. I then copied the lein-cljsbuild advanced example project into a path that contained a space (".../a

Re: Getting started with lein-cljsbuild

2012-05-28 Thread Ben Mabey
On 4/19/12 4:31 AM, Chris Perkins wrote: On Thursday, April 19, 2012 3:03:53 AM UTC-4, Evan Mezeske wrote: That's great news that you got it to work. I can't make any sense of the stack trace you're seeing with "lein deps", though, unfortunately. Other than installation, does t

Re: Getting started with lein-cljsbuild

2012-05-28 Thread Mark Engelberg
On Thu, Apr 19, 2012 at 1:29 AM, Mark Engelberg wrote: > Unfortunately, "lein trampoline cljsbuild repl-rhino" (and all the > trampoline tasks) > generates the same error that I got when I tried to run lein deps. > I mentioned last month that I was able to get "lein cljsbuild once" to work, but w

Re: Getting started with lein-cljsbuild

2012-04-19 Thread Chris Perkins
On Thursday, April 19, 2012 3:03:53 AM UTC-4, Evan Mezeske wrote: > > That's great news that you got it to work. I can't make any sense of the > stack trace you're seeing with "lein deps", though, unfortunately. > > Other than installation, does the plugin seem to work (e.g. "lein > cljsbuild on

Re: Getting started with lein-cljsbuild

2012-04-19 Thread Mark Engelberg
Unfortunately, "lein trampoline cljsbuild repl-rhino" (and all the trampoline tasks) generates the same error that I got when I tried to run lein deps. On Thu, Apr 19, 2012 at 12:18 AM, Mark Engelberg wrote: > Yes, I've only tested "lein cljsbuild once", but it worked just fine once > I figured

Re: Getting started with lein-cljsbuild

2012-04-19 Thread Mark Engelberg
Yes, I've only tested "lein cljsbuild once", but it worked just fine once I figured out the alternative way to get the plugin installed. On Thu, Apr 19, 2012 at 12:03 AM, Evan Mezeske wrote: > That's great news that you got it to work. I can't make any sense of the > stack trace you're seeing w

Re: Getting started with lein-cljsbuild

2012-04-19 Thread Evan Mezeske
That's great news that you got it to work. I can't make any sense of the stack trace you're seeing with "lein deps", though, unfortunately. Other than installation, does the plugin seem to work (e.g. "lein cljsbuild once", etc)? I haven't tested it under Windows myself, and people have had tr

Re: Getting started with lein-cljsbuild

2012-04-18 Thread Mark Engelberg
I was able to get the plugin working by typing the following at the command-line (rather than using lein deps): C:\temp\cljstest>lein plugin install lein-cljsbuild 0.1.8 -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email

Getting started with lein-cljsbuild

2012-04-18 Thread Mark Engelberg
I'm getting ready for my first foray into Clojurescript. I managed to get all the tools installed under Windows, and can run the repl and compiler from the command line using the instructions found at: https://github.com/clojure/clojurescript/wiki/Quick-Start So far, so good. Next, I downloaded