up vote 2 down vote favorite
1
share [g+] share [fb]

Does anyone know how tempfile.rb is handled in JRuby. It is in Ruby but not in JRuby.

Anyone got anyideas?

Cheers

Eef

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

You can still "require 'tempfile'" and it will work.

In JRuby, Tempfile is implemented in Java. We were able to improve the performance substantially, and avoid the buggy stdlib version in the process.

link|improve this answer
do you know where I can find documentation or some example code? Cheers – RailsSon Sep 24 '09 at 11:09
Assume it works the same as Ruby's tempfile.rb: ruby-doc.org/stdlib/libdoc/tempfile/rdoc/classes/Tempfile.html – Nick Sieger Sep 26 '09 at 19:29
1  
I'm trying to use appengine-jruby, where Tempfile is supposed to be patched and replaced by StringIO, but id doesn't work, it's still using Java implementation which tries to write into a real file, that is not accessible on GAE. pastie.org/791460 – skrat Jan 23 '10 at 18:49
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.