summaryrefslogtreecommitdiff
path: root/lib/tempfile.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/tempfile.rb')
-rw-r--r--lib/tempfile.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/tempfile.rb b/lib/tempfile.rb
index 2de1ebddf3..bf51ac2788 100644
--- a/lib/tempfile.rb
+++ b/lib/tempfile.rb
@@ -22,7 +22,7 @@ class Tempfile < SimpleDelegator
File.unlink(path)
end
if File.exist?(path + '.lock')
- File.rmdir(path + '.lock')
+ Dir.rmdir(path + '.lock')
end
print "done\n" if $DEBUG
}
@@ -51,8 +51,8 @@ class Tempfile < SimpleDelegator
@clean_files = Tempfile.callback(tmpname)
ObjectSpace.define_finalizer(self, @clean_files)
- @tmpname = tmpname
@tmpfile = File.open(tmpname, 'w+')
+ @tmpname = tmpname
super(@tmpfile)
Dir.rmdir(lock)
ensure