Class: Savon::Wasabi::Document
- Inherits:
-
Wasabi::Document
- Object
- Wasabi::Document
- Savon::Wasabi::Document
- Defined in:
- lib/savon/wasabi/document.rb
Overview
Savon::Wasabi::Document
Extends the document handling of the Wasabi::Document
by adding support for remote and local WSDL documents.
Instance Attribute Summary collapse
-
#request ⇒ Object
writeonly
Sets the
HTTPI::Request
for remote WSDL documents.
Instance Method Summary collapse
-
#xml ⇒ Object
Hooks into Wasabi and extends its document handling.
Instance Attribute Details
#request=(value) ⇒ Object
Sets the HTTPI::Request
for remote WSDL documents.
19 20 21 |
# File 'lib/savon/wasabi/document.rb', line 19 def request=(value) @request = value end |
Instance Method Details
#xml ⇒ Object
Hooks into Wasabi and extends its document handling.
14 15 16 |
# File 'lib/savon/wasabi/document.rb', line 14 def xml @xml ||= document.kind_of?(String) ? resolve_document : document end |