1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* file.c: Document other cases of missing birthtime on OS with patch

provided by @sho-h similar to GH-817. [ci skip] [DOC]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@49362 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
zzak 2015-01-21 00:44:06 +00:00
parent c7ba10cc13
commit 4908827022
2 changed files with 10 additions and 4 deletions

View file

@ -1,3 +1,8 @@
Wed Jan 21 09:40:52 2015 Zachary Scott <e@zzak.io>
* file.c: Document other cases of missing birthtime on OS with patch
provided by @sho-h similar to GH-817. [ci skip] [DOC]
Wed Jan 21 09:09:19 2015 Tanaka Akira <akr@fsij.org>
* NEWS: References to tickets added.

9
file.c
View file

@ -892,6 +892,7 @@ rb_stat_ctime(VALUE self)
* stat.birthtime -> aTime
*
* Returns the birth time for <i>stat</i>.
*
* If the platform doesn't have birthtime, raises NotImplementedError.
*
* File.write("testfile", "foo")
@ -2193,10 +2194,10 @@ rb_file_ctime(VALUE obj)
*
* _file_name_ can be an IO object.
*
* Note that on Windows (NTFS), returns creation time (birth time).
*
* File.birthtime("testfile") #=> Wed Apr 09 08:53:13 CDT 2003
*
* If the platform doesn't have birthtime, raises NotImplementedError.
*
*/
static VALUE
@ -2221,10 +2222,10 @@ rb_file_s_birthtime(VALUE klass, VALUE fname)
*
* Returns the birth time for <i>file</i>.
*
* Note that on Windows (NTFS), returns creation time (birth time).
*
* File.new("testfile").birthtime #=> Wed Apr 09 08:53:14 CDT 2003
*
* If the platform doesn't have birthtime, raises NotImplementedError.
*
*/
static VALUE