[Jruby-devel] Tvs Plasma notebboks E-gold apy

2006-04-19 Thread vendas
Title: Importbrasil & Invision LTDA  

Re: [Jruby-devel] Missing Fixnum.to_s(base)

2006-04-19 Thread Thomas E Enebo
Committed, with argument changed so that we do: args[0].convertToInteger().getLongValue() Many ruby functions need to work with classes which implement type conversion functions (like to_int as in this case). -Tom On Wed, 19 Apr 2006, Ola Bini defenestrated me: > Hi again! > > A fix for thi

Re: [Jruby-devel] Bug in super handling for modules.

2006-04-19 Thread Charles O Nutter
Yeah, I think we've fixed the others, I just meant this was one more along the same lines.On 4/19/06, Thomas E Enebo < [EMAIL PROTECTED]> wrote:On Wed, 19 Apr 2006, Charles O Nutter defenestrated me: >>There have been myriad issues with super in modules...we'll add this>to the list and try

Re: [Jruby-devel] Bug in super handling for modules.

2006-04-19 Thread Thomas E Enebo
On Wed, 19 Apr 2006, Charles O Nutter defenestrated me: > >There have been myriad issues with super in modules...we'll add this >to the list and try to resolve it. This is the only remaining super problem we know of now though right? We ran the guantlet with the others. It is not too

Re: [Jruby-devel] RbYAML, version 0.01

2006-04-19 Thread Thomas E Enebo
On Wed, 19 Apr 2006, Ola Bini defenestrated me: > Hi everybody. > > The Ruby YAML version is going along really good. I now have a complete, > working Ruby Scanner. It fixes everything in the YAML 1.1-spec, except > for the Unicode stuff. It also have no problems with the gemspec yaml > string, wh

Re: [Jruby-devel] Bug in super handling for modules.

2006-04-19 Thread Charles O Nutter
There have been myriad issues with super in modules...we'll add this to the list and try to resolve it.On 4/19/06, Ola Bini < [EMAIL PROTECTED]> wrote:Hi.I've found something that seems to be a bug. I have these modules:module A  def initialize(stream)super()  endendmodu

[Jruby-devel] RbYAML, version 0.01

2006-04-19 Thread Ola Bini
Hi everybody. The Ruby YAML version is going along really good. I now have a complete, working Ruby Scanner. It fixes everything in the YAML 1.1-spec, except for the Unicode stuff. It also have no problems with the gemspec yaml string, which is quite big... Now, this is a work in progress, but fee

Re: [Jruby-devel] Missing Fixnum.to_s(base)

2006-04-19 Thread Ola Bini
Hi again! A fix for this problem attached. Regards Ola Bini - Original Message - From: Ola Bini <[EMAIL PROTECTED]> Date: Wednesday, April 19, 2006 2:52 pm Subject: [Jruby-devel] Missing Fixnum.to_s(base) To: [email protected] > Hi. > > Fixnum seems to be missing handl

[Jruby-devel] Missing Fixnum.to_s(base)

2006-04-19 Thread Ola Bini
Hi. Fixnum seems to be missing handling of different bases. Doing 10.to_s(16) should return "A" but raises an ArgumentError. Regards Ola Bini --- This SF.Net email is sponsored by xPML, a groundbreaking scripting language that extends applic

[Jruby-devel] Bug in super handling for modules.

2006-04-19 Thread Ola Bini
Hi. I've found something that seems to be a bug. I have these modules: module A def initialize(stream) super() end end module B def initialize super end end class C include A, B def initialize(stream) super end end Now, accor