savon 0.7.7 → 0.7.8

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,5 @@
1
+ Autotest.add_hook(:initialize) do |at|
2
+ at.clear_mappings
3
+ at.add_mapping(%r%^spec/savon/.*_spec.rb$%) { |filename, _| filename }
4
+ at.add_mapping(%r%^lib/(.*)\.rb$%) { |_, m| ["spec/#{m[1]}_spec.rb"] }
5
+ end
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
@@ -1,5 +1,5 @@
1
1
  module Savon
2
2
 
3
- Version = "0.7.7"
3
+ Version = "0.7.8"
4
4
 
5
5
  end
@@ -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"
@@ -0,0 +1,4 @@
1
+ --colour
2
+ --format progress
3
+ --loadby mtime
4
+ --reverse
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 7
8
- - 7
9
- version: 0.7.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: []