ruby-changes:11132
From: yugui <ko1@a...>
Date: Tue, 3 Mar 2009 20:39:40 +0900 (JST)
Subject: [ruby-changes:11132] Ruby:r22732 (ruby_1_9_1): merges r22567 from trunk into ruby_1_9_1.
yugui 2009-03-03 20:39:28 +0900 (Tue, 03 Mar 2009) New Revision: 22732 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=22732 Log: merges r22567 from trunk into ruby_1_9_1. -- * lib/fileutils.rb (mv): added description for the case of different partitions. [ruby-talk:329072] Modified files: branches/ruby_1_9_1/ChangeLog branches/ruby_1_9_1/lib/fileutils.rb Index: ruby_1_9_1/ChangeLog =================================================================== --- ruby_1_9_1/ChangeLog (revision 22731) +++ ruby_1_9_1/ChangeLog (revision 22732) @@ -1,3 +1,8 @@ +Mon Feb 23 14:47:04 2009 Nobuyoshi Nakada <nobu@r...> + + * lib/fileutils.rb (mv): added description for the case of + different partitions. [ruby-talk:329072] + Sun Feb 22 22:42:20 2009 Nobuyoshi Nakada <nobu@r...> * string.c (tr_trans): should recalculate coderange. Index: ruby_1_9_1/lib/fileutils.rb =================================================================== --- ruby_1_9_1/lib/fileutils.rb (revision 22731) +++ ruby_1_9_1/lib/fileutils.rb (revision 22732) @@ -487,7 +487,7 @@ # Options: force noop verbose # # Moves file(s) +src+ to +dest+. If +file+ and +dest+ exist on the different - # disk partition, the file is copied instead. + # disk partition, the file is copied then the original file is removed. # # FileUtils.mv 'badname.rb', 'goodname.rb' # FileUtils.mv 'stuff.rb', '/notexist/lib/ruby', :force => true # no error -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/