Ruby 1.8.7 リファレンスマニュアル > ライブラリ一覧 > tempfileライブラリ > Tempfileクラス > close!
close! -> nil
テンポラリファイルをクローズし、すぐに削除します。
require "tempfile" tf = Tempfile.open("bar") path = tf.path tf.close! p FileTest.exist?(path) # => false