name()
public
Returns the name of the module
mod.
Show source
/*
* call-seq:
* mod.name => string
*
* Returns the name of the module <i>mod</i>.
*/
VALUE
rb_mod_name(mod)
VALUE mod;
{
VALUE path = classname(mod);
if (!NIL_P(path)) return rb_str_dup(path);
return rb_str_new(0,0);
}