method
get_methods
v2_2_9 -
Show latest stable
- Class:
XMLRPC::Service::Interface
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