diff options
author | nahi <nahi@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-12-24 14:09:57 +0000 |
---|---|---|
committer | nahi <nahi@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-12-24 14:09:57 +0000 |
commit | 101929732344e023cebbe3e6edf3d08276bdac5b (patch) | |
tree | 72e62ba9f7e09f80cc1eca749562e63b36697489 /lib/rdoc/rdoc.rb | |
parent | ce0aa0af9107018bd5d7fcfe4fc5b27da1896342 (diff) |
Mon Dec 24 23:04:57 2007 NAKAMURA, Hiroshi <[email protected]>
* 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: svn+ssh://ci.ruby-lang.org/ruby/trunk@14610 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/rdoc/rdoc.rb')
-rw-r--r-- | lib/rdoc/rdoc.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/rdoc/rdoc.rb b/lib/rdoc/rdoc.rb index 91f5611196..af4a822da1 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 |