Hey,
Does anyone know how tempfile.rb is handled in JRuby. It is in Ruby but not in JRuby.
Anyone got anyideas?
Cheers
Eef
Hey,
Does anyone know how tempfile.rb is handled in JRuby. It is in Ruby but not in JRuby.
Anyone got anyideas?
Cheers
Eef
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.