[前][次][番号順一覧][スレッド一覧]

ruby-changes:10980

From: nobu <ko1@a...>
Date: Mon, 23 Feb 2009 14:47:21 +0900 (JST)
Subject: [ruby-changes:10980] Ruby:r22567 (ruby_1_8, trunk): * lib/fileutils.rb (mv): added description for the case of

nobu	2009-02-23 14:47:06 +0900 (Mon, 23 Feb 2009)

  New Revision: 22567

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=22567

  Log:
    * lib/fileutils.rb (mv): added description for the case of
      different partitions.  [ruby-talk:329072]

  Modified files:
    branches/ruby_1_8/ChangeLog
    branches/ruby_1_8/lib/fileutils.rb
    branches/ruby_1_8/version.h
    trunk/ChangeLog
    trunk/lib/fileutils.rb

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 22566)
+++ ChangeLog	(revision 22567)
@@ -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]
+
 Mon Feb 23 10:19:41 2009  Nobuyoshi Nakada  <nobu@r...>
 
 	* include/ruby/ruby.h (USE_SYMBOL_AS_METHOD_NAME): Module#methods,
Index: lib/fileutils.rb
===================================================================
--- lib/fileutils.rb	(revision 22566)
+++ lib/fileutils.rb	(revision 22567)
@@ -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
Index: ruby_1_8/ChangeLog
===================================================================
--- ruby_1_8/ChangeLog	(revision 22566)
+++ ruby_1_8/ChangeLog	(revision 22567)
@@ -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 13:03:14 2009  Nobuyoshi Nakada  <nobu@r...>
 
 	* Makefile.in (configure): unset PWD to use symlink to building
Index: ruby_1_8/version.h
===================================================================
--- ruby_1_8/version.h	(revision 22566)
+++ ruby_1_8/version.h	(revision 22567)
@@ -1,7 +1,7 @@
 #define RUBY_VERSION "1.8.7"
-#define RUBY_RELEASE_DATE "2009-02-22"
+#define RUBY_RELEASE_DATE "2009-02-23"
 #define RUBY_VERSION_CODE 187
-#define RUBY_RELEASE_CODE 20090222
+#define RUBY_RELEASE_CODE 20090223
 #define RUBY_PATCHLEVEL 5000
 
 #define RUBY_VERSION_MAJOR 1
@@ -9,7 +9,7 @@
 #define RUBY_VERSION_TEENY 7
 #define RUBY_RELEASE_YEAR 2009
 #define RUBY_RELEASE_MONTH 2
-#define RUBY_RELEASE_DAY 22
+#define RUBY_RELEASE_DAY 23
 
 #ifdef RUBY_EXTERN
 RUBY_EXTERN const char ruby_version[];
Index: ruby_1_8/lib/fileutils.rb
===================================================================
--- ruby_1_8/lib/fileutils.rb	(revision 22566)
+++ ruby_1_8/lib/fileutils.rb	(revision 22567)
@@ -479,7 +479,8 @@
   # 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 copied file is created on the +dest+ and the original
+  # file removed from +src+.
   # 
   #   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/

[前][次][番号順一覧][スレッド一覧]