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

* ext/pathname/pathname.c (path_lstat): Pathname#lstat translated

from pathname.rb.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@28971 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akr 2010-08-12 12:18:44 +00:00
parent 2b1f8574c7
commit 98f53d5db2
3 changed files with 15 additions and 3 deletions

View file

@ -1,3 +1,8 @@
Thu Aug 12 21:18:27 2010 Tanaka Akira <akr@fsij.org>
* ext/pathname/pathname.c (path_lstat): Pathname#lstat translated
from pathname.rb.
Thu Aug 12 05:58:09 2010 Nobuyoshi Nakada <nobu@ruby-lang.org>
* include/ruby/encoding.h (rb_char_to_option_kcode): used in

View file

@ -512,9 +512,6 @@ end
class Pathname # * File *
# See <tt>File.lstat</tt>.
def lstat() File.lstat(@path) end
# See <tt>File.symlink</tt>. Creates a symbolic link.
def make_symlink(old) File.symlink(old, @path) end

View file

@ -384,6 +384,15 @@ path_stat(VALUE self)
return rb_funcall(rb_cFile, rb_intern("stat"), 1, get_strpath(self));
}
/*
* See <tt>File.lstat</tt>.
*/
static VALUE
path_lstat(VALUE self)
{
return rb_funcall(rb_cFile, rb_intern("lstat"), 1, get_strpath(self));
}
/*
* == Pathname
*
@ -599,4 +608,5 @@ Init_pathname()
rb_define_method(rb_cPathname, "readlink", path_readlink, 0);
rb_define_method(rb_cPathname, "rename", path_rename, 1);
rb_define_method(rb_cPathname, "stat", path_stat, 0);
rb_define_method(rb_cPathname, "lstat", path_lstat, 0);
}