savon 0.7.7 → 0.7.8
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/.autotest +5 -0
- data/CHANGELOG +3 -0
- data/lib/savon/version.rb +1 -1
- data/spec/fixtures/wsdl/wsdl_fixture.yml +42 -0
- data/spec/spec.opts +4 -0
- metadata +5 -2
data/.autotest
ADDED
data/CHANGELOG
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
== 0.7.8 (2010-05-09)
|
|
2
|
+
* Fixed gemspec to include missing files (*.yml, *.gz, .autotest and spec/spec.opts) in the gem.
|
|
3
|
+
|
|
1
4
|
== 0.7.7 (2010-05-09)
|
|
2
5
|
* SOAP requests now start with a proper XML declaration.
|
|
3
6
|
* Added support for gzipped requests and responses (http://github.com/lucascs). While gzipped SOAP
|
data/lib/savon/version.rb
CHANGED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
:authentication:
|
|
2
|
+
:namespace_uri: "http://v1_0.ws.auth.order.example.com/"
|
|
3
|
+
:operations:
|
|
4
|
+
:authenticate:
|
|
5
|
+
:action: "authenticate"
|
|
6
|
+
:input: "authenticate"
|
|
7
|
+
|
|
8
|
+
:no_namespace:
|
|
9
|
+
:namespace_uri: "urn:ActionWebService"
|
|
10
|
+
:operations:
|
|
11
|
+
:get_all_contacts:
|
|
12
|
+
:action: "/api/api/GetAllContacts"
|
|
13
|
+
:input: "GetAllContacts"
|
|
14
|
+
:search_user:
|
|
15
|
+
:action: "/api/api/SearchUser"
|
|
16
|
+
:input: "SearchUser"
|
|
17
|
+
:get_user_login_by_id:
|
|
18
|
+
:action: "/api/api/GetUserLoginById"
|
|
19
|
+
:input: "GetUserLoginById"
|
|
20
|
+
|
|
21
|
+
:namespaced_actions:
|
|
22
|
+
:namespace_uri: "http://api.example.com/api/"
|
|
23
|
+
:operations:
|
|
24
|
+
:get_api_key:
|
|
25
|
+
:input: "GetApiKey"
|
|
26
|
+
:action: "http://api.example.com/api/User.GetApiKey"
|
|
27
|
+
:delete_client:
|
|
28
|
+
:input: "DeleteClient"
|
|
29
|
+
:action: "http://api.example.com/api/Client.Delete"
|
|
30
|
+
:get_clients:
|
|
31
|
+
:input: "GetClients"
|
|
32
|
+
:action: "http://api.example.com/api/User.GetClients"
|
|
33
|
+
|
|
34
|
+
:geotrust:
|
|
35
|
+
:namespace_uri: "http://api.geotrust.com/webtrust/query"
|
|
36
|
+
:operations:
|
|
37
|
+
:get_quick_approver_list:
|
|
38
|
+
:action: "GetQuickApproverList"
|
|
39
|
+
:input: "GetQuickApproverList"
|
|
40
|
+
:hello:
|
|
41
|
+
:input: "hello"
|
|
42
|
+
:action: "hello"
|
data/spec/spec.opts
ADDED
metadata
CHANGED
|
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
|
5
5
|
segments:
|
|
6
6
|
- 0
|
|
7
7
|
- 7
|
|
8
|
-
-
|
|
9
|
-
version: 0.7.
|
|
8
|
+
- 8
|
|
9
|
+
version: 0.7.8
|
|
10
10
|
platform: ruby
|
|
11
11
|
authors:
|
|
12
12
|
- Daniel Harrington
|
|
@@ -149,7 +149,10 @@ files:
|
|
|
149
149
|
- spec/fixtures/wsdl/xml/geotrust.xml
|
|
150
150
|
- spec/fixtures/wsdl/xml/namespaced_actions.xml
|
|
151
151
|
- spec/fixtures/wsdl/xml/no_namespace.xml
|
|
152
|
+
- spec/fixtures/wsdl/wsdl_fixture.yml
|
|
152
153
|
- spec/fixtures/gzip/message.gz
|
|
154
|
+
- .autotest
|
|
155
|
+
- spec/spec.opts
|
|
153
156
|
has_rdoc: true
|
|
154
157
|
homepage: http://github.com/rubiii/savon
|
|
155
158
|
licenses: []
|