diff options
author | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2010-09-09 13:43:37 +0000 |
---|---|---|
committer | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2010-09-09 13:43:37 +0000 |
commit | eb0c31b1adaa23051b952b3c0de0640a5283afd4 (patch) | |
tree | a2385098604b08bf289fc251f8b52bf11d41087d /ext/pathname/pathname.c | |
parent | 96688ecbab2e18be02af7172bcb3732e57d9290e (diff) |
* ext/pathname/pathname.c (path_size): Pathname#size translated from
pathname.rb.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29204 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/pathname/pathname.c')
-rw-r--r-- | ext/pathname/pathname.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/ext/pathname/pathname.c b/ext/pathname/pathname.c index 46d1f7371c..14a79f73e4 100644 --- a/ext/pathname/pathname.c +++ b/ext/pathname/pathname.c @@ -742,6 +742,15 @@ path_setgid_p(VALUE self) } /* + * See <tt>FileTest.size</tt>. + */ +static VALUE +path_size(VALUE self) +{ + return rb_funcall(rb_mFileTest, rb_intern("size"), 1, get_strpath(self)); +} + +/* * == Pathname * * Pathname represents a pathname which locates a file in a filesystem. @@ -986,4 +995,5 @@ Init_pathname() rb_define_method(rb_cPathname, "readable_real?", path_readable_real_p, 0); rb_define_method(rb_cPathname, "setuid?", path_setuid_p, 0); rb_define_method(rb_cPathname, "setgid?", path_setgid_p, 0); + rb_define_method(rb_cPathname, "size", path_size, 0); } |