Maintenance of Ruby 2.0.0 ended on February 24, 2016. Read more

In Files

  • xmlrpc/utils.rb

XMLRPC::Service::Interface

Class which wraps a XMLRPC::Service::Interface definition, used by XMLRPC::BasicServer#add_handler

Public Class Methods

new(prefix, &p) click to toggle source
 
               # File xmlrpc/utils.rb, line 112
def initialize(prefix, &p)
  raise "No interface specified" if p.nil?
  super(prefix)
  instance_eval(&p)
end
            

Public Instance Methods

get_methods(obj, delim=".") click to toggle source
 
               # File 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