I'm trying to compile JRuby Gems into Java Classes.
the Ruby code is in C:\compass. I'm running the following command:
C:\compass>jrubyc --javac .
this generates a bunch of .java files in C:\compass but no .class files. I saw some old posts about a bug that was supposedly fixed but I'm using the latest versions JRuby1.7.1
also, I couldn't find the correct syntax to specify a destination directory. I tried
C:\compass>jrubyc --javac -Jd -Jclasses .
or
C:\compass>jrubyc --javac -J "-d classes" .
but nothing seems to work.
any thoughts will be appreciated.
thanks :)