Module: Savon

Extended by:
Global
Defined in:
lib/savon.rb,
lib/savon/soap.rb,
lib/savon/wsse.rb,
lib/savon/error.rb,
lib/savon/client.rb,
lib/savon/global.rb,
lib/savon/version.rb,
lib/savon/soap/xml.rb,
lib/savon/http/error.rb,
lib/savon/soap/fault.rb,
lib/savon/wsdl/parser.rb,
lib/savon/soap/request.rb,
lib/savon/wsdl/request.rb,
lib/savon/core_ext/hash.rb,
lib/savon/core_ext/time.rb,
lib/savon/soap/response.rb,
lib/savon/wsdl/document.rb,
lib/savon/core_ext/object.rb,
lib/savon/core_ext/string.rb

Defined Under Namespace

Modules: CoreExt, Global, HTTP, SOAP, WSDL Classes: Client, Error, WSSE

Constant Summary collapse

Version =
"0.8.6"

Instance Attribute Summary

Attributes included from Global

#log, #log_level, #logger, #raise_errors, #strip_namespaces

Class Method Summary collapse

Methods included from Global

log?, raise_errors?, reset_config!, soap_version, soap_version=, strip_namespaces?

Class Method Details

.configure {|_self| ... } ⇒ Object

Yields this module to a given block. Please refer to the Savon::Global module for configuration options.

Yields:

  • (_self)

Yield Parameters:

  • _self (Savon)

    the object that the method was called on



10
11
12
# File 'lib/savon.rb', line 10

def self.configure
  yield self if block_given?
end