diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | ext/pathname/lib/pathname.rb | 3 | ||||
-rw-r--r-- | ext/pathname/pathname.c | 15 | ||||
-rw-r--r-- | test/pathname/test_pathname.rb | 2 |
4 files changed, 22 insertions, 3 deletions
@@ -1,3 +1,8 @@ +Wed Sep 15 21:07:06 2010 Tanaka Akira <[email protected]> + + * ext/pathname/pathname.c (path_mkdir): Pathname#mkdir translated + from pathname.rb. + Wed Sep 15 13:37:00 2010 URABE Shyouhei <[email protected]> * test/net/imap/test_imap.rb: "localhost" not guaranteed to diff --git a/ext/pathname/lib/pathname.rb b/ext/pathname/lib/pathname.rb index efe45afd6e..fdbafc512b 100644 --- a/ext/pathname/lib/pathname.rb +++ b/ext/pathname/lib/pathname.rb @@ -494,9 +494,6 @@ class Pathname # * Dir * Dir.foreach(@path) {|f| yield self.class.new(f) } end - # See <tt>Dir.mkdir</tt>. Create the referenced directory. - def mkdir(*args) Dir.mkdir(@path, *args) end - # See <tt>Dir.rmdir</tt>. Remove the referenced directory. def rmdir() Dir.rmdir(@path) end diff --git a/ext/pathname/pathname.c b/ext/pathname/pathname.c index cfeb94b1b7..1eeddfb503 100644 --- a/ext/pathname/pathname.c +++ b/ext/pathname/pathname.c @@ -882,6 +882,20 @@ path_entries(VALUE self) } /* + * See <tt>Dir.mkdir</tt>. Create the referenced directory. + */ +static VALUE +path_mkdir(int argc, VALUE *argv, VALUE self) +{ + VALUE str = get_strpath(self); + VALUE vmode; + if (rb_scan_args(argc, argv, "01", &vmode) == 0) + return rb_funcall(rb_cDir, rb_intern("mkdir"), 1, str); + else + return rb_funcall(rb_cDir, rb_intern("mkdir"), 2, str, vmode); +} + +/* * == Pathname * * Pathname represents a pathname which locates a file in a filesystem. @@ -1138,4 +1152,5 @@ Init_pathname() rb_define_singleton_method(rb_cPathname, "getwd", path_s_getwd, 0); 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); } diff --git a/test/pathname/test_pathname.rb b/test/pathname/test_pathname.rb index 5d22531885..ecd03d9288 100644 --- a/test/pathname/test_pathname.rb +++ b/test/pathname/test_pathname.rb @@ -1191,6 +1191,8 @@ class TestPathname < Test::Unit::TestCase with_tmpchdir('rubytest-pathname') {|dir| Pathname("d").mkdir assert(File.directory?("d")) + Pathname("e").mkdir(0770) + assert(File.directory?("d")) } end |