Method deprecated or moved
This method is deprecated or moved on the latest stable version.
The last existing version (v1_9_3_392) is shown here.
makedirs(*dirs)
public
Make the directories given in dirs.
# File lib/rake/contrib/sys.rb, line 117
def makedirs(*dirs)
dirs.each do |fn|
log "Making directory #{fn}"
File.makedirs(fn)
end
end