class XMLRPC::Service::PublicInstanceMethodsInterface
Public Class Methods
Source
# File lib/xmlrpc/utils.rb, line 135 def initialize(prefix) super(prefix) end
Calls superclass method
XMLRPC::Service::BasicInterface::new
Public Instance Methods
Source
# File lib/xmlrpc/utils.rb, line 139 def get_methods(obj, delim=".") prefix = @prefix + delim obj.class.public_instance_methods(false).collect { |name| [prefix + name.to_s, obj.method(name).to_proc, nil, nil] } end