savon 0.7.3 → 0.7.4
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.
- data/CHANGELOG +3 -0
- data/lib/savon/wsdl_stream.rb +1 -1
- metadata +2 -2
data/CHANGELOG
CHANGED
@@ -1,3 +1,6 @@
|
|
1
|
+
== 0.7.4 (2010-02-02)
|
2
|
+
* Fix for issue #33 (undefined method 'start_with?').
|
3
|
+
|
1
4
|
== 0.7.3 (2010-01-31)
|
2
5
|
* Added support for Geotrust-style WSDL documents (Julian Kornberger <github.corny@digineo.de>).
|
3
6
|
* Make HTTP requests include path and query only. This was breaking requests via proxy as scheme and host
|
data/lib/savon/wsdl_stream.rb
CHANGED
@@ -51,7 +51,7 @@ module Savon
|
|
51
51
|
# Reads namespace definitions from a given +attrs+ Hash.
|
52
52
|
def read_namespaces(attrs)
|
53
53
|
attrs.each do |key, value|
|
54
|
-
@namespaces[key.split(":").last] = value if key
|
54
|
+
@namespaces[key.split(":").last] = value if key =~ /^xmlns:/
|
55
55
|
end
|
56
56
|
end
|
57
57
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: savon
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.7.
|
4
|
+
version: 0.7.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Daniel Harrington
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2010-
|
12
|
+
date: 2010-02-02 00:00:00 +01:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|