lein-cljsbuild simple example on Windows XP with lein2, Could not locate example/routes__init.class or example/routes.clj on classpath

2012-07-15 Thread George Oliver
hi, I'm trying to get lein-cljsbuild running on Windows XP. I copied the simple example at https://github.com/emezeske/lein-cljsbuild/tree/master/example-projects/simple and then did $ lein cljsbuild once $ lein ring server-headless 3000 Which gives the error, C:\george\work\simplelein

newer versions

2012-07-15 Thread cej38
I know that this might be more of a question for elsewhere, but I have been playing with core.logic from time to time when I am sick of looking at stuff for my day job. Many months ago, I figured out how to make a project using lein and at the time core.logic-0.6.8.jar was the newest version

Re: Clojure shell calls results inconsistent with actual shell calls.

2012-07-15 Thread Denis Labaye
On Thu, Jul 12, 2012 at 12:21 AM, Eric in San Diego eric.sc...@acm.orgwrote: In a shell, I can call app arg1 arg2 arg3 arg4 arg5 arg6 arg7 and get my expected results. However, if I make what I think is the same call programmatically in clojure: (ns ... (:require

Re: newer versions

2012-07-15 Thread Moritz Ulrich
You can't unless there's a maven release for that specific branch. There is a leiningen feature called 'checkouts' which might be used for the kind of functionality you want. On Sun, Jul 15, 2012 at 4:58 PM, cej38 junkerme...@gmail.com wrote: I know that this might be more of a question for

Re: lein-cljsbuild simple example on Windows XP with lein2, Could not locate example/routes__init.class or example/routes.clj on classpath

2012-07-15 Thread George Oliver
On Sunday, July 15, 2012 12:00:57 AM UTC-7, George Oliver wrote: hi, I'm trying to get lein-cljsbuild running on Windows XP. I copied the simple example at https://github.com/emezeske/lein-cljsbuild/tree/master/example-projects/simple I think I found a fix for this; in the example

Re: lein-cljsbuild simple example on Windows XP with lein2, Could not locate example/routes__init.class or example/routes.clj on classpath

2012-07-15 Thread Evan Mezeske
Since Leiningen 2.x has not yet been released, lein-cljsbuild uses Leiningen 1.x for both the example projects, and building the plugin itself. The problem you ran into is a difference between Leiningen 1.x and 2.x. I created an issue to make sure that this fact is made more clear:

Re: newer versions

2012-07-15 Thread Niels van Klaveren
You might try the sonatype snapshot repository, there's a recent core.logic snapshot build on there. Add :repositories {sonatype-snapshots https://oss.sonatype.org/content/repositories/snapshots/} :dependencies [[org.clojure/clojure 1.4.0] [org.clojure/core.logic

Re: lein-cljsbuild simple example on Windows XP with lein2, Could not locate example/routes__init.class or example/routes.clj on classpath

2012-07-15 Thread George Oliver
On Sunday, July 15, 2012 1:17:04 PM UTC-7, Evan Mezeske wrote: Since Leiningen 2.x has not yet been released, lein-cljsbuild uses Leiningen 1.x for both the example projects, and building the plugin itself. The problem you ran into is a difference between Leiningen 1.x and 2.x. I

Re: lein-cljsbuild simple example on Windows XP with lein2, Could not locate example/routes__init.class or example/routes.clj on classpath

2012-07-15 Thread Evan Mezeske
Thanks; do you know of a project that uses the latest cljsbuild with lein 2 I could try to test? I was able to launch the ring server in the advanced project, but I'm still failing launching the repl. Not off the top of my head. Unfortunately, github's search tool is junk, otherwise it

Re: lein-cljsbuild simple example on Windows XP with lein2, Could not locate example/routes__init.class or example/routes.clj on classpath

2012-07-15 Thread George Oliver
On Sunday, July 15, 2012 3:15:34 PM UTC-7, Evan Mezeske wrote: Thanks; do you know of a project that uses the latest cljsbuild with lein 2 I could try to test? Not off the top of my head. Unfortunately, github's search tool is junk, otherwise it might be possible to find something

a simple Processing.js wrapper in clojurescript

2012-07-15 Thread Craig Brozefsky
I have a repo that I've been using to stage some experiments with canvas and clojurescript. Today, while high on cold meds, I implemented a wrapper for Processing.js which is fairly complete. It is missing clojure fns for the methods on PFont and PGraphic etc, but you can use the normal

Re: Clojure shell calls results inconsistent with actual shell calls.

2012-07-15 Thread Anthony Grimes
You don't have to post your whole application, but you really, really need to give us a small example that causes your problem. We can't work with I did x with y and it doesn't work.. Try to water down an isolated piece of code that we can run that causes your issue. On Wednesday, July 11,

Re: lein-cljsbuild simple example on Windows XP with lein2, Could not locate example/routes__init.class or example/routes.clj on classpath

2012-07-15 Thread Evan Mezeske
You might also want to control for Linux/BSD vs Windows. From what I can tell, there are very few Windows users of lein-cljsbuild (or Leiningen even, for that matter), and thus the problems are distributed over not-so-many eyeballs. On Sunday, July 15, 2012 3:52:46 PM UTC-7, George Oliver

Re: newer versions

2012-07-15 Thread Murtaza Husain
Niles any advantages of using the sonatype repos over the regular maven ones? On Monday, July 16, 2012 2:30:46 AM UTC+5:30, Niels van Klaveren wrote: You might try the sonatype snapshot repository, there's a recent core.logic snapshot build on there. Add :repositories