savon 2.7.1 → 2.7.2

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: 2fdfc453139cd68c26aec6d2852a4538f7ba123e
4
- data.tar.gz: dccd7ad49f8d955189a17053b3f1f0157a774665
3
+ metadata.gz: 090044c5ed3b652b05e9725efd589d989debdfe2
4
+ data.tar.gz: 66e3b163f648dfee8822abdf628705641fe34170
5
5
  SHA512:
6
- metadata.gz: 62fbd1c16e3b5bfadd779836dd77c6ddae58c671409103991bf0bb81df2bfbdbda7ea99bc9a4600ca7d5907c9723fb99ac0413bba3e9ddd0c0500434e3b4103f
7
- data.tar.gz: 86e1245e8b70b4b33bea5da46fa0df6dabdc5815ec27c499fa5e97bc5088c1f3915d44aac2db61f2e50482d8948f380634598bd7f1e038d173dc300b51be4206
6
+ metadata.gz: fca34525f579049113cf5dd7f6d6ae647bec2c82d73cbd7884012a5bd85af9d6fd43653d76a20f83b181727f9c2c56e6828e5bc8a242904703fb1e00ff1da5df
7
+ data.tar.gz: 51d75ad87da2e6a9c0617987418eb00d36cafd27ee3ba840eb08c8034fecd12a22537e7c5fed13e127e705a6927b8a0738d986370142a705dd545804af93bea8
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ # 2.7.2 (2014-09-23)
2
+
3
+ Fix : Preserve false values (https://github.com/savonrb/savon/issues/321)
4
+
1
5
  # 2.7.1 (2014-09-23)
2
6
 
3
7
  * Fix : Fix a crash in builder when request headers do not contain WSA headers
@@ -10,7 +10,7 @@ module Savon
10
10
  end
11
11
 
12
12
  def to_hash(hash, path)
13
- return unless hash
13
+ return hash unless hash
14
14
  return hash.map { |value| to_hash(value, path) } if hash.kind_of?(Array)
15
15
  return hash.to_s unless hash.kind_of? Hash
16
16
 
data/lib/savon/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Savon
2
- VERSION = '2.7.1'
2
+ VERSION = '2.7.2'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: savon
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.7.1
4
+ version: 2.7.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel Harrington