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 | ef116555f5eb0439ccdded85cb77ea310b76dbd2 (patch) | |
tree | 72e62ba9f7e09f80cc1eca749562e63b36697489 /lib/shell/command-processor.rb | |
parent | cc37a3550f01cd45e75be18652be02cccb11486e (diff) | |
download | ruby-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/shell/command-processor.rb')
-rw-r--r-- | lib/shell/command-processor.rb | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/lib/shell/command-processor.rb b/lib/shell/command-processor.rb index db1bce05a..f5e8713c3 100644 --- a/lib/shell/command-processor.rb +++ b/lib/shell/command-processor.rb @@ -11,7 +11,6 @@ # require "e2mmap" -require "ftools" require "thread" require "shell/error" @@ -589,24 +588,6 @@ class Shell def_builtin_commands(FileTest, FileTest.singleton_methods(false).collect{|m| [m, ["FILENAME"]]}) -# # method related ftools -# normal_delegation_ftools_methods = [ -# ["syscopy", ["FILENAME_FROM", "FILENAME_TO"]], -# ["copy", ["FILENAME_FROM", "FILENAME_TO"]], -# ["move", ["FILENAME_FROM", "FILENAME_TO"]], -# ["compare", ["FILENAME_FROM", "FILENAME_TO"]], -# ["safe_unlink", ["*FILENAMES"]], -# ["makedirs", ["*FILENAMES"]], -# # ["chmod", ["mode", "*FILENAMES"]], -# ["install", ["FILENAME_FROM", "FILENAME_TO", "mode"]], -# ] -# def_builtin_commands(File, -# normal_delegation_ftools_methods) -# alias_method :cmp, :compare -# alias_method :mv, :move -# alias_method :cp, :copy -# alias_method :rm_f, :safe_unlink -# alias_method :mkpath, :makedirs end end |