public(*args)
private
With no arguments, sets the default visibility for subsequently defined
methods to public. With arguments, sets
the named methods to have public
visibility. String arguments are converted to
symbols.
Show source
static VALUE
rb_mod_public(int argc, VALUE *argv, VALUE module)
{
return set_visibility(argc, argv, module, METHOD_VISI_PUBLIC);
}