get_methods(obj, delim=".")public
No documentation available.
# File lib/xmlrpc/utils.rb, line 118
def get_methods(obj, delim=".")
prefix = @prefix + delim
@methods.collect { |name, meth, sig, help|
[prefix + name.to_s, obj.method(meth).to_proc, sig, help]
}
end