My default Raven repository sits in my default folder which is on windows "C:\Documents and Settings\<user>".
So Raven generates classpath entries containing spaces for dependencies. javac tasks fails in that case.
I could work around the problem adding the following line to java_tasks.rb before line 69. :
classpath.collect! { |path| path.include?(' ') ? '"' + path + '"' : path }
I did not tested on other platforms.
versions:
jdk 1.4.2
ruby 1.8.4 (2005-12-24) [i386-mswin32]
gem 0.9.0
rake 0.7.1
raven unknown |