diff options
| author | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2014-05-27 04:58:36 +0000 |
|---|---|---|
| committer | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2014-05-27 04:58:36 +0000 |
| commit | e63338f6fbac8339c58f74e606262d9726ad64cf (patch) | |
| tree | 12b8216406db6a934e72814504d453ee7ce0b1fd | |
| parent | 309ac6447d67fe87d956d01d2491542d6f56818f (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-- | ChangeLog | 6 | ||||
| -rw-r--r-- | lib/fileutils.rb | 4 | ||||
| -rw-r--r-- | version.h | 2 |
3 files changed, 9 insertions, 3 deletions
@@ -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. # @@ -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 |
