@@ -192,8 +192,6 @@ def self.private_module_function(name) #:nodoc:
192192 #
193193 # FileUtils.pwd # => "/rdoc/fileutils"
194194 #
195- # FileUtils.getwd is an alias for FileUtils.pwd.
196- #
197195 # Related: FileUtils.cd.
198196 #
199197 def pwd
@@ -235,8 +233,6 @@ def pwd
235233 # cd ..
236234 # cd fileutils
237235 #
238- # FileUtils.chdir is an alias for FileUtils.cd.
239- #
240236 # Related: FileUtils.pwd.
241237 #
242238 def cd ( dir , verbose : nil , &block ) # :yield: dir
@@ -515,8 +511,6 @@ def rmdir(list, parents: nil, noop: nil, verbose: nil)
515511 # Raises an exception if +dest+ is the path to an existing file
516512 # and keyword argument +force+ is not +true+.
517513 #
518- # FileUtils#link is an alias for FileUtils#ln.
519- #
520514 # Related: FileUtils.link_entry (has different options).
521515 #
522516 def ln ( src , dest , force : nil , noop : nil , verbose : nil )
@@ -707,8 +701,6 @@ def cp_lr(src, dest, noop: nil, verbose: nil,
707701 # ln -sf src2.txt dest2.txt
708702 # ln -s srcdir3/src0.txt srcdir3/src1.txt destdir3
709703 #
710- # FileUtils.symlink is an alias for FileUtils.ln_s.
711- #
712704 # Related: FileUtils.ln_sf.
713705 #
714706 def ln_s ( src , dest , force : nil , relative : false , target_directory : true , noop : nil , verbose : nil )
@@ -876,8 +868,6 @@ def link_entry(src, dest, dereference_root = false, remove_destination = false)
876868 #
877869 # Raises an exception if +src+ is a directory.
878870 #
879- # FileUtils.copy is an alias for FileUtils.cp.
880- #
881871 # Related: {methods for copying}[rdoc-ref:FileUtils@Copying].
882872 #
883873 def cp ( src , dest , preserve : nil , noop : nil , verbose : nil )
@@ -1164,8 +1154,6 @@ def copy_stream(src, dest)
11641154 # mv src0 dest0
11651155 # mv src1.txt src1 dest1
11661156 #
1167- # FileUtils.move is an alias for FileUtils.mv.
1168- #
11691157 def mv ( src , dest , force : nil , noop : nil , verbose : nil , secure : nil )
11701158 fu_output_message "mv#{ force ? ' -f' : '' } #{ [ src , dest ] . flatten . join ' ' } " if verbose
11711159 return if noop
@@ -1223,8 +1211,6 @@ def mv(src, dest, force: nil, noop: nil, verbose: nil, secure: nil)
12231211 #
12241212 # rm src0.dat src0.txt
12251213 #
1226- # FileUtils.remove is an alias for FileUtils.rm.
1227- #
12281214 # Related: {methods for deleting}[rdoc-ref:FileUtils@Deleting].
12291215 #
12301216 def rm ( list , force : nil , noop : nil , verbose : nil )
@@ -1250,8 +1236,6 @@ def rm(list, force: nil, noop: nil, verbose: nil)
12501236 #
12511237 # See FileUtils.rm for keyword arguments.
12521238 #
1253- # FileUtils.safe_unlink is an alias for FileUtils.rm_f.
1254- #
12551239 # Related: {methods for deleting}[rdoc-ref:FileUtils@Deleting].
12561240 #
12571241 def rm_f ( list , noop : nil , verbose : nil )
@@ -1339,8 +1323,6 @@ def rm_r(list, force: nil, noop: nil, verbose: nil, secure: nil)
13391323 #
13401324 # See FileUtils.rm_r for keyword arguments.
13411325 #
1342- # FileUtils.rmtree is an alias for FileUtils.rm_rf.
1343- #
13441326 # Related: {methods for deleting}[rdoc-ref:FileUtils@Deleting].
13451327 #
13461328 def rm_rf ( list , noop : nil , verbose : nil , secure : nil )
0 commit comments