summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-05-27 04:58:36 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-05-27 04:58:36 +0000
commite63338f6fbac8339c58f74e606262d9726ad64cf (patch)
tree12b8216406db6a934e72814504d453ee7ce0b1fd
parent309ac6447d67fe87d956d01d2491542d6f56818f (diff)
merge revision(s) 45604: [Backport #9748]
* lib/fileutils.rb (FileUtils#copy_entry): update rdoc about preserve option and permissions, following r31123. [ruby-core:62065] [Bug #9748] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_0_0@46158 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog6
-rw-r--r--lib/fileutils.rb4
-rw-r--r--version.h2
3 files changed, 9 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 0001656cf0..9eb9d30cc4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Tue May 27 13:57:41 2014 Nobuyoshi Nakada <nobu@ruby-lang.org>
+
+ * lib/fileutils.rb (FileUtils#copy_entry): update rdoc about
+ preserve option and permissions, following r31123.
+ [ruby-core:62065] [Bug #9748]
+
Tue May 27 13:42:36 2014 Nobuyoshi Nakada <nobu@ruby-lang.org>
* proc.c (umethod_bind): use the ancestor iclass instead of new
diff --git a/lib/fileutils.rb b/lib/fileutils.rb
index 10d8b25d1c..cb89bb3444 100644
--- a/lib/fileutils.rb
+++ b/lib/fileutils.rb
@@ -449,8 +449,8 @@ module FileUtils
# Both of +src+ and +dest+ must be a path name.
# +src+ must exist, +dest+ must not exist.
#
- # If +preserve+ is true, this method preserves owner, group, permissions
- # and modified time.
+ # If +preserve+ is true, this method preserves owner, group, and
+ # modified time. Permissions are copied regardless +preserve+.
#
# If +dereference_root+ is true, this method dereference tree root.
#
diff --git a/version.h b/version.h
index 889cd95289..cb833ffc62 100644
--- a/version.h
+++ b/version.h
@@ -1,6 +1,6 @@
#define RUBY_VERSION "2.0.0"
#define RUBY_RELEASE_DATE "2014-05-27"
-#define RUBY_PATCHLEVEL 486
+#define RUBY_PATCHLEVEL 487
#define RUBY_RELEASE_YEAR 2014
#define RUBY_RELEASE_MONTH 5