Maintenance of Ruby 2.0.0 ended on February 24, 2016. Read more

In Files

  • pathname/pathname.c

Methods

Class/Module Index [+]

Quicksearch

Kernel

Public Instance Methods

Pathname(p1) click to toggle source

Creates a new Pathname object.

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