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

Refix of r38916: it uses realpath

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38918 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
naruse 2013-01-24 04:20:33 +00:00
parent b5c0c4ee08
commit ded754f33d

6
eval.c
View file

@ -1505,10 +1505,10 @@ rb_f_callee_name(void)
* call-seq:
* __dir__ -> string
*
* Returns the absolute path of the directory of the file from which this
* method is called.
* Returns the canonicalized absolute path of the directory of the file from
* which this method is called. It means symlinks in the path is resolved.
* If <code>__FILE__</code> is <code>nil</code>, it returns <code>nil</code>.
* The return value equals to <code>File.dirname(File.expand_path(__FILE__))</code>.
* The return value equals to <code>File.dirname(File.realpath(__FILE__))</code>.
*
*/
static VALUE