savon 2.3.3 → 2.4.0
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/.gitignore +1 -0
- data/CHANGELOG.md +9 -0
- data/lib/savon/options.rb +1 -1
- data/lib/savon/version.rb +1 -1
- data/spec/savon/client_spec.rb +5 -0
- metadata +2 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1e067f76bf98355ac8d45b7794066761b478669e
|
4
|
+
data.tar.gz: db9c6381959313f8c173b9abfcb24e360e892580
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bcfab18096e9beaf971fe837bd4af924ce6d04dc7d63458046aad1498f20781606528e8eeeb3f0d6990175cccfdfde3197c719ce34185a5d37a73e47bc84bdcb
|
7
|
+
data.tar.gz: dbc7b384908c2a1f2bbaac0daf1ba07702aab0fb206a834d7b797e88601b8a264703d8cfbc1273f002e33fa7ddf11ba73a0a97546f9de3505ce1d34de8146602
|
data/.gitignore
CHANGED
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,12 @@
|
|
1
|
+
## 2.4.0 (2014-03-31)
|
2
|
+
|
3
|
+
* Logging is off by default. To enable this behavior, set the :log option to true
|
4
|
+
|
5
|
+
``` ruby
|
6
|
+
client = Savon.client(wsdl: "http://example.com/service.wsdl")
|
7
|
+
client.options[:log] = true
|
8
|
+
```
|
9
|
+
|
1
10
|
### 2.3.2 (2013-12-09)
|
2
11
|
|
3
12
|
* Fix: [#520](https://github.com/savonrb/savon/issues/520) Fixes a regression in message tags in requests and responses.
|
data/lib/savon/options.rb
CHANGED
data/lib/savon/version.rb
CHANGED
data/spec/savon/client_spec.rb
CHANGED
@@ -62,6 +62,11 @@ describe Savon::Client do
|
|
62
62
|
it "returns the current set of global options" do
|
63
63
|
expect(new_client.globals).to be_an_instance_of(Savon::GlobalOptions)
|
64
64
|
end
|
65
|
+
|
66
|
+
fit "defaults :log to false" do
|
67
|
+
client = Savon.client(:wsdl => Fixture.wsdl(:authentication))
|
68
|
+
expect(client.globals[:log]).to be_false
|
69
|
+
end
|
65
70
|
end
|
66
71
|
|
67
72
|
describe "#service_name" do
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: savon
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.4.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Daniel Harrington
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-01
|
11
|
+
date: 2014-04-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: nori
|
@@ -282,7 +282,6 @@ files:
|
|
282
282
|
- spec/support/fixture.rb
|
283
283
|
- spec/support/integration.rb
|
284
284
|
- spec/support/stdout.rb
|
285
|
-
- tmp/test.rb
|
286
285
|
homepage: http://savonrb.com
|
287
286
|
licenses:
|
288
287
|
- MIT
|