summaryrefslogtreecommitdiffstats
path: root/lib/rdoc/rdoc.rb
diff options
context:
space:
mode:
authornahi <nahi@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-12-24 14:09:57 +0000
committernahi <nahi@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-12-24 14:09:57 +0000
commitef116555f5eb0439ccdded85cb77ea310b76dbd2 (patch)
tree72e62ba9f7e09f80cc1eca749562e63b36697489 /lib/rdoc/rdoc.rb
parentcc37a3550f01cd45e75be18652be02cccb11486e (diff)
downloadruby-ef116555f5eb0439ccdded85cb77ea310b76dbd2.tar.gz
ruby-ef116555f5eb0439ccdded85cb77ea310b76dbd2.tar.xz
ruby-ef116555f5eb0439ccdded85cb77ea310b76dbd2.zip
Mon Dec 24 23:04:57 2007 NAKAMURA, Hiroshi <nahi@ruby-lang.org>
* lib/ftools.rb: removed obsoleted lib. use fileutils instead (by eban). * lib/rdoc/rdoc.rb, lib/rdoc/generators/*, lib/rake.rb: let it use fileutils instead of ftools. * lib/shell/command-processor.rb: removed unused references to ftools. * lib/parsedate.rb: removed. see [ruby-core:12535], [ruby-dev:31969]. * lib/README: updated. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@14610 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/rdoc/rdoc.rb')
-rw-r--r--lib/rdoc/rdoc.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/rdoc/rdoc.rb b/lib/rdoc/rdoc.rb
index 91f561119..af4a822da 100644
--- a/lib/rdoc/rdoc.rb
+++ b/lib/rdoc/rdoc.rb
@@ -15,7 +15,7 @@ require 'rdoc/options'
require 'rdoc/diagram'
require 'find'
-require 'ftools'
+require 'fileutils'
require 'time'
# We put rdoc stuff in the RDoc module to avoid namespace
@@ -125,7 +125,7 @@ module RDoc
last = (Time.parse(created) unless force rescue nil)
end
else
- File.makedirs(op_dir)
+ FileUtils.mkdir_p(op_dir)
end
last
end