Re: [jruby-dev] Re: JRuby 0.9.9 Released

2007-05-01 Thread Charles Oliver Nutter
Wayne Meissner wrote: JNA is very nice. You can even use it directly from JRuby. e.g. require 'java' Function = Java::com.sun.jna.Function f = Function.new("gstreamer-0.10", "gst_version_string") puts "gst_version_string = " + f.invokeString(java.lang.String[0].new, false) That's pretty impr

Re: [jruby-dev] Re: JRuby 0.9.9 Released

2007-05-01 Thread Mike McKinney
This is great news... I was staring at a ton of integration work for an upcoming project, whew! (sounds much easier with JNA) Thanks Tim Wall and thanks Charlie for posting that email to the list! M On 4/30/07, Wayne Meissner <[EMAIL PROTECTED]> wrote: Charles Oliver Nutter wrote: > [EMAIL

Re: [jruby-dev] Re: JRuby 0.9.9 Released

2007-04-30 Thread Wayne Meissner
Charles Oliver Nutter wrote: [EMAIL PROTECTED] wrote: I can't give you JNI-based POSIX functions, but I can give you Java-based ones which might be a bit easier to maintain. JNA (http://jna.dev.java.net) might help you get the functionality you need without having to deal with JNI headache

[jruby-dev] Re: JRuby 0.9.9 Released

2007-04-30 Thread Charles Oliver Nutter
[EMAIL PROTECTED] wrote: Charles Oliver Nutter-2 wrote: That being said, you can't avoid JNI forever. In my humble opinion, a 1.0 release should support the POSIX functions you've been avoiding. You may be right...and it would be quite generous of you to jump in and help out! I'm sure your JNI-