1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* lib/tempfile.rb (Tempfile.{mkdir,rmdir}): internal methods to be overridden in subclasses.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31719 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2011-05-24 21:22:00 +00:00
parent 5c9c28b3a0
commit 54bbfe811e

View file

@ -326,18 +326,12 @@ class Tempfile < DelegateClass(File)
end
end
# :call-seq:
# mkdir(string, [integer]) -> 0
#
# Synonym for Dir.mkdir.
# :stopdoc:
def mkdir(*args)
Dir.mkdir(*args)
end
# :call-seq:
# rmdir(string) -> 0
#
# Synonym for Dir.rmdir.
def rmdir(*args)
Dir.rmdir(*args)
end