Module: XMLRPC
- Defined in:
- lib/xmlrpc/utils.rb,
lib/xmlrpc/base64.rb,
lib/xmlrpc/client.rb,
lib/xmlrpc/config.rb,
lib/xmlrpc/create.rb,
lib/xmlrpc/parser.rb,
lib/xmlrpc/server.rb,
lib/xmlrpc/marshal.rb,
lib/xmlrpc/datetime.rb
Overview
module NQXML
Defined Under Namespace
Modules: Config, Convert, Marshallable, ParseContentType, ParserWriterChooseMixin, Service, XMLParser, XMLWriter Classes: Base64, BasicServer, CGIServer, Client, Create, DateTime, FaultException, Marshal, ModRubyServer, Server, WEBrickServlet
Class Method Summary collapse
-
.interface(prefix, &p) ⇒ Object
short-form to create a Service::Interface.
-
.iPIMethods(prefix) ⇒ Object
short-cut for creating a PublicInstanceMethodsInterface.
Class Method Details
.interface(prefix, &p) ⇒ Object
short-form to create a Service::Interface
147 148 149 |
# File 'lib/xmlrpc/utils.rb', line 147 def self.interface(prefix, &p) Service::Interface.new(prefix, &p) end |
.iPIMethods(prefix) ⇒ Object
short-cut for creating a PublicInstanceMethodsInterface
152 153 154 |
# File 'lib/xmlrpc/utils.rb', line 152 def self.iPIMethods(prefix) Service::PublicInstanceMethodsInterface.new(prefix) end |