JRuby - Tempfile.rb

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

Anyone got anyideas?

Greetings

Eef

+2


source to share


1 answer


You can still require the tempfile and it will work.



In JRuby, Tempfile is implemented in Java. We were able to significantly improve performance and avoid a bug in the stdlib version.

+3


source







All Articles