From: gabriele renzi Date: 2004-11-27T21:27:54+09:00 Subject: Re: [ANN] FreeRIDE 0.9.0 Released! Curt Hibbs ha scritto: > Have fun! And, as always, feedback and contributions are welcome. > thanks for this release, it includes many of the improvements I've been waiting (i.e. code folding). BTW I don't know if this is considered a bug, mostly because the usage of RRB is quite obscure.. but on a source like this: class K def initialize(myval) @foo= @foo * 2 return myval end attr_accessor :foo def superbaz @foo= @foo * 2 end end extracting "@foo= @foo * 2" as "foo_doubler" results in: class K def foo_doubler() @foo= @foo * 2 end def initialize(myval) foo_doubler() return myval end attr_accessor :foo def superbaz @foo= @foo * 2 end end so just an occurrence gets changed, while the refactoring could extend to the second one. Is this the expected behaviour? Also, why are you still redisting rexml in the tar.gz file ?