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_rmdir): Pathname#rmdir translated

from pathname.rb.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29267 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akr 2010-09-15 21:08:19 +00:00
parent ef5948f0dc
commit d0e9ac151e
3 changed files with 15 additions and 3 deletions

View file

@ -1,3 +1,8 @@
Thu Sep 16 06:07:24 2010 Tanaka Akira <akr@fsij.org>
* ext/pathname/pathname.c (path_rmdir): Pathname#rmdir translated
from pathname.rb.
Thu Sep 16 00:36:25 2010 NARUSE, Yui <naruse@ruby-lang.org>
* ext/readline/extconf.rb: Remove Readline 6 check because

View file

@ -494,9 +494,6 @@ class Pathname # * Dir *
Dir.foreach(@path) {|f| yield self.class.new(f) }
end
# See <tt>Dir.rmdir</tt>. Remove the referenced directory.
def rmdir() Dir.rmdir(@path) end
# See <tt>Dir.open</tt>.
def opendir(&block) # :yield: dir
Dir.open(@path, &block)

View file

@ -895,6 +895,15 @@ path_mkdir(int argc, VALUE *argv, VALUE self)
return rb_funcall(rb_cDir, rb_intern("mkdir"), 2, str, vmode);
}
/*
* See <tt>Dir.rmdir</tt>. Remove the referenced directory.
*/
static VALUE
path_rmdir(VALUE self)
{
return rb_funcall(rb_cDir, rb_intern("rmdir"), 1, get_strpath(self));
}
/*
* == Pathname
*
@ -1153,4 +1162,5 @@ Init_pathname()
rb_define_singleton_method(rb_cPathname, "pwd", path_s_getwd, 0);
rb_define_method(rb_cPathname, "entries", path_entries, 0);
rb_define_method(rb_cPathname, "mkdir", path_mkdir, -1);
rb_define_method(rb_cPathname, "rmdir", path_rmdir, 0);
}