public_class_method(*args)
public
Makes a list of existing class methods public.
String arguments are converted to symbols.
Show source
static VALUE
rb_mod_public_method(int argc, VALUE *argv, VALUE obj)
{
set_method_visibility(rb_singleton_class(obj), argc, argv, METHOD_VISI_PUBLIC);
return obj;
}