Module: Kernel

Defined in:
(unknown)

Instance Method Summary collapse

Instance Method Details

#Pathname(str) ⇒ Object

:call-seq:

Pathname(path)  -> pathname

Creates a new Pathname object from the given string, path, and returns pathname object.

In order to use this constructor, you must first require the Pathname standard library extension.

require ‘pathname’ Pathname(“/home/zzak”) #=> #<Pathname:/home/zzak>

See also Pathname::new for more information.



1186
1187
1188
1189
1190
# File 'pathname.c', line 1186

static VALUE
path_f_pathname(VALUE self, VALUE str)
{
    return rb_class_new_instance(1, &str, rb_cPathname);
}