From 19fb560d219f583066241293f2e0f92cd898595e Mon Sep 17 00:00:00 2001 From: akr Date: Fri, 20 Aug 2010 01:40:51 +0000 Subject: * ext/pathname/pathname.c (path_expand_path): Pathname#expand_path translated from pathname.rb. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29058 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/pathname/pathname.c | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'ext/pathname/pathname.c') diff --git a/ext/pathname/pathname.c b/ext/pathname/pathname.c index 834fa446da..2ebb976de2 100644 --- a/ext/pathname/pathname.c +++ b/ext/pathname/pathname.c @@ -459,6 +459,21 @@ path_extname(VALUE self) return rb_funcall(rb_cFile, rb_intern("extname"), 1, str); } +/* + * See File.expand_path. + */ +static VALUE +path_expand_path(int argc, VALUE *argv, VALUE self) +{ + VALUE str = get_strpath(self); + VALUE dname; + if (rb_scan_args(argc, argv, "01", &dname) == 0) + str = rb_funcall(rb_cFile, rb_intern("expand_path"), 1, str); + else + str = rb_funcall(rb_cFile, rb_intern("expand_path"), 2, str, dname); + return rb_class_new_instance(1, &str, rb_obj_class(self)); +} + /* * == Pathname * @@ -681,4 +696,5 @@ Init_pathname() rb_define_method(rb_cPathname, "basename", path_basename, -1); rb_define_method(rb_cPathname, "dirname", path_dirname, 0); rb_define_method(rb_cPathname, "extname", path_extname, 0); + rb_define_method(rb_cPathname, "expand_path", path_expand_path, -1); } -- cgit v1.2.3