savon 0.7.8 → 0.7.9

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG CHANGED
@@ -1,3 +1,6 @@
1
+ == 0.7.9 (2010-06-14)
2
+ * Fix for issue #53 (DateTime.to_soap_value assumes UTC).
3
+
1
4
  == 0.7.8 (2010-05-09)
2
5
  * Fixed gemspec to include missing files (*.yml, *.gz, .autotest and spec/spec.opts) in the gem.
3
6
 
@@ -16,7 +16,7 @@ Instantiate Savon::Client, passing in the WSDL of your service.
16
16
 
17
17
  client = Savon::Client.new "http://example.com/UserService?wsdl"
18
18
 
19
- For production, it is highly recommended to not use Savon::WSDL. Information on {how to disable the WSDL}[http://savon.rubiii.com/docs/0.7.7/classes/Savon/WSDL.html].
19
+ For production, it is highly recommended to not use Savon::WSDL. Information on {how to disable the WSDL}[http://savon.rubiii.com/docs/latest/classes/Savon/WSDL.html].
20
20
 
21
21
  == Calling a SOAP action
22
22
 
@@ -56,9 +56,9 @@ Savon::Response represents the HTTP and SOAP response. It contains and raises er
56
56
  == HTTP errors and SOAP faults
57
57
 
58
58
  Savon raises a Savon::SOAPFault in case of a SOAP fault and a Savon::HTTPError in case of an HTTP error.
59
- More information: {Errors}[http://savon.rubiii.com/docs/0.7.7/classes/Savon/Response.html]
59
+ More information: {Errors}[http://savon.rubiii.com/docs/latest/classes/Savon/Response.html]
60
60
 
61
61
  == Logging
62
62
 
63
63
  Savon logs each request and response to STDOUT. But there are a couple of options to change the default behavior.
64
- More information: {Logging}[http://savon.rubiii.com/docs/0.7.7/classes/Savon/Request.html]
64
+ More information: {Logging}[http://savon.rubiii.com/docs/latest/classes/Savon/Request.html]
@@ -128,7 +128,7 @@ module Savon
128
128
  ContentType = { 1 => "text/xml", 2 => "application/soap+xml" }
129
129
 
130
130
  # SOAP xs:dateTime format.
131
- DateTimeFormat = "%Y-%m-%dT%H:%M:%SZ"
131
+ DateTimeFormat = "%Y-%m-%dT%H:%M:%S%Z"
132
132
 
133
133
  # SOAP xs:dateTime Regexp.
134
134
  DateTimeRegexp = /^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}/
@@ -1,5 +1,5 @@
1
1
  module Savon
2
2
 
3
- Version = "0.7.8"
3
+ Version = "0.7.9"
4
4
 
5
5
  end
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 7
8
- - 8
9
- version: 0.7.8
8
+ - 9
9
+ version: 0.7.9
10
10
  platform: ruby
11
11
  authors:
12
12
  - Daniel Harrington
@@ -14,7 +14,7 @@ autorequire:
14
14
  bindir: bin
15
15
  cert_chain: []
16
16
 
17
- date: 2010-05-09 00:00:00 +02:00
17
+ date: 2010-06-14 00:00:00 +02:00
18
18
  default_executable:
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency