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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3e8eec0719b771bb78ddbbc80afb8482285d5e02
4
- data.tar.gz: 74faf656cd60043ffe92882bce595b6956d7a9d4
3
+ metadata.gz: 1e067f76bf98355ac8d45b7794066761b478669e
4
+ data.tar.gz: db9c6381959313f8c173b9abfcb24e360e892580
5
5
  SHA512:
6
- metadata.gz: 707a13701534592771c16d820d26e5c52406caa71f23df0c4981f9f3e264e30c8af7fc0f9b62f2d6140ea3c5c6a226a89fa0f4853d034992232a609cd8ce09bd
7
- data.tar.gz: d3bf7599276e62c51636f578b1a256a8e0ae70628348d5348d410fa67969a4983253e1889ad1ff8af4310eb941fc9942e679154989332de19273a21c8be9d8b4
6
+ metadata.gz: bcfab18096e9beaf971fe837bd4af924ce6d04dc7d63458046aad1498f20781606528e8eeeb3f0d6990175cccfdfde3197c719ce34185a5d37a73e47bc84bdcb
7
+ data.tar.gz: dbc7b384908c2a1f2bbaac0daf1ba07702aab0fb206a834d7b797e88601b8a264703d8cfbc1273f002e33fa7ddf11ba73a0a97546f9de3505ce1d34de8146602
data/.gitignore CHANGED
@@ -11,3 +11,4 @@ tmp
11
11
  .bundle
12
12
  .rspec
13
13
  Gemfile.lock
14
+ bin/
@@ -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.
@@ -48,7 +48,7 @@ module Savon
48
48
  :soap_version => 1,
49
49
  :namespaces => {},
50
50
  :logger => Logger.new($stdout),
51
- :log => true,
51
+ :log => false,
52
52
  :filters => [],
53
53
  :pretty_print_xml => false,
54
54
  :raise_errors => true,
@@ -1,3 +1,3 @@
1
1
  module Savon
2
- VERSION = '2.3.3'
2
+ VERSION = '2.4.0'
3
3
  end
@@ -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.3.3
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-08 00:00:00.000000000 Z
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