lolsoap 0.5.0 → 0.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/VERSION +1 -1
- data/lib/lolsoap/wsdl_parser.rb +2 -2
- data/lolsoap.gemspec +2 -2
- data/test/fixtures/stock_quote.wsdl +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e7a361721a3138038d730668311a3e83340df411
|
|
4
|
+
data.tar.gz: 6332b9fe23d9d46ce280e182ac110ee58134aa95
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6681b3c04f898307549a55cf9b2092712c2ffd6733113a96a4dfec127bd60e61dd2dd960dd83f30572e38804ede58dbc6f3b2bc0d3fc4215404422c5e69793bd
|
|
7
|
+
data.tar.gz: 41b82f801682f7c43468c587f387738d3d333e94e3d68540357df8fd0ad924958b7d3128782dfe7a16c201ebb3f89a7f3c68eec91104e0248e488cb386f32a22
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.5.
|
|
1
|
+
0.5.1
|
data/lib/lolsoap/wsdl_parser.rb
CHANGED
|
@@ -161,8 +161,8 @@ module LolSoap
|
|
|
161
161
|
def messages
|
|
162
162
|
@messages ||= Hash[
|
|
163
163
|
doc.xpath('/d:definitions/d:message', ns).map do |msg|
|
|
164
|
-
|
|
165
|
-
[msg.attribute('name').to_s, namespace_and_name(
|
|
164
|
+
part = msg.at_xpath("d:part", ns)
|
|
165
|
+
[msg.attribute('name').to_s, namespace_and_name(part, part['element'])]
|
|
166
166
|
end
|
|
167
167
|
]
|
|
168
168
|
end
|
data/lolsoap.gemspec
CHANGED
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
3
|
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
|
4
4
|
# -*- encoding: utf-8 -*-
|
|
5
|
-
# stub: lolsoap 0.5.
|
|
5
|
+
# stub: lolsoap 0.5.1 ruby lib
|
|
6
6
|
|
|
7
7
|
Gem::Specification.new do |s|
|
|
8
8
|
s.name = "lolsoap"
|
|
9
|
-
s.version = "0.5.
|
|
9
|
+
s.version = "0.5.1"
|
|
10
10
|
|
|
11
11
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
12
12
|
s.authors = ["Jon Leighton"]
|
|
@@ -83,7 +83,7 @@
|
|
|
83
83
|
</types>
|
|
84
84
|
|
|
85
85
|
<message name="GetLastTradePriceInput">
|
|
86
|
-
<part name="body" element="
|
|
86
|
+
<part name="body" xmlns:foo="http://example.com/stockquote.xsd" element="foo:tradePriceRequest"/>
|
|
87
87
|
</message>
|
|
88
88
|
|
|
89
89
|
<message name="GetLastTradePriceOutput">
|