Re: [Jruby-devel] Regression #7 Fixed. No more lazy eval

2006-03-21 Thread David Corbin
Well, we're backed to where I'd gotten to before, which is going to take some time to narrow down. I'm getting an "not found exception" out of some of our java code, that I'm not getting with 0.8.2. David On Monday 20 March 2006 21:09, Thomas E Enebo wrote: > Fixed. At least this case is. I

Re: [Jruby-devel] Regression #7 Fixed. No more lazy eval

2006-03-21 Thread David Corbin
That works well where I had spotted the breakage. I'm now check our other bits and parts. On Monday 20 March 2006 21:09, Thomas E Enebo wrote: > Fixed. At least this case is. I was not overriding any Ruby functions > which already existed. 'print' was one of those. I removed this > restric

Re: [Jruby-devel] Regression #7 Fixed. No more lazy eval

2006-03-20 Thread Thomas E Enebo
Fixed. At least this case is. I was not overriding any Ruby functions which already existed. 'print' was one of those. I removed this restriction with exception of 'class', which java support reqiures. I suspect there is more and will continue looking, but I wanted to give you something to w

Re: [Jruby-devel] Regression #7 Fixed. No more lazy eval

2006-03-20 Thread David Corbin
Who new it would be so simple :) On Monday 20 March 2006 09:00 pm, Thomas E Enebo wrote: > I am on it: > > require 'java' > > include_class 'java.io.PrintWriter' > include_class 'java.lang.System' > > p = PrintWriter.new(System.out) > p.print "HEH" > p.close > > On Mon, 20 Mar 2006, David Corbin

Re: [Jruby-devel] Regression #7 Fixed. No more lazy eval

2006-03-20 Thread Thomas E Enebo
I am on it: require 'java' include_class 'java.io.PrintWriter' include_class 'java.lang.System' p = PrintWriter.new(System.out) p.print "HEH" p.close On Mon, 20 Mar 2006, David Corbin defenestrated me: > On Monday 20 March 2006 10:22 am, Thomas E Enebo wrote: > > I committed a fix this mornin

Re: [Jruby-devel] Regression #7 Fixed. No more lazy eval

2006-03-20 Thread Thomas E Enebo
On Mon, 20 Mar 2006, David Corbin defenestrated me: > On Monday 20 March 2006 10:22 am, Thomas E Enebo wrote: > > I committed a fix this morning which fixes this example. > > > > The fix removes lazy evaluation and moves instance method creation > > for proxies into Java (from Ruby in javasupport.

Re: [Jruby-devel] Regression #7 Fixed. No more lazy eval

2006-03-20 Thread David Corbin
On Monday 20 March 2006 10:22 am, Thomas E Enebo wrote: > I committed a fix this morning which fixes this example. > > The fix removes lazy evaluation and moves instance method creation > for proxies into Java (from Ruby in javasupport.rb). In fact instance > method calls to java from ruby are now

Re: [Jruby-devel] Regression #7 Fixed. No more lazy eval

2006-03-20 Thread Charles O Nutter
I concur with adopting Java's built-in bean attribute mapping logic as written. There should be very few cases where we want to venture outside this standard, and deferring to Java means we have less code to support. I can attest to the speed assertions too. When Tom demonstrated this for me on Fri