public Method

Interface.get_methods(obj, delim=".")

There's no documentation for this item.

Source Code

# File xmlrpc/utils.rb, line 112
def get_methods(obj, delim=".") 
  prefix = @prefix + delim
  @methods.collect { |name, meth, sig, help| 
    [prefix + name, obj.method(meth).to_proc, sig, help] 
  }
end
Comments

Have your say
Please use Textile formatting (click here for a cheat sheet). Use <code/> and <pre/> for code samples.
Click here to login with OpenID to to post comments.