soaspec 0.0.15 → 0.0.16
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/ChangeLog +4 -0
- data/Gemfile.lock +1 -1
- data/lib/soaspec/basic_soap_handler.rb +1 -1
- data/lib/soaspec/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 802d57b54c80ef5ecbae8ebca1a2c0b259b17732
|
4
|
+
data.tar.gz: 236f51f5c4333e62021bf622edee84cd0cfd7bc9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a9e31773f47eb0ecf13ffe57f686c9dd35d5d725aa33d9cd2614f5ce167222390dce14a94bef755da48443fa8e5df4c47c397c9c9d4f7b1d8ea7880ce2b76934
|
7
|
+
data.tar.gz: 9446bf7a31afba4f05ec9b5b7971f734d3692e1d63d3d67522068e52cf8d52d53ebc6b523f80b98d948f74293283223cace6067652f492b47774fb7bec2e9636
|
data/ChangeLog
CHANGED
@@ -1,3 +1,7 @@
|
|
1
|
+
Version 0.0.16 / 2018-1-23
|
2
|
+
* Fixes
|
3
|
+
* Corrected logic of auto convert to hash. Previous version did not handle test specific values correctly
|
4
|
+
|
1
5
|
Version 0.0.15 / 2018-1-23
|
2
6
|
* Fixes
|
3
7
|
* Updated code to convert string key in Savon request to key automatically by default before passing to Savon. This saves
|
data/Gemfile.lock
CHANGED
@@ -70,7 +70,7 @@ module Soaspec
|
|
70
70
|
def make_request(override_parameters)
|
71
71
|
test_values = override_parameters # Used in Erb
|
72
72
|
# Erb parses template file, executing Ruby code in `<% %>` blocks to work out final request
|
73
|
-
test_values = test_values.transform_keys_to_symbols
|
73
|
+
test_values = test_values.transform_keys_to_symbols if Soaspec::Environment.always_use_keys?
|
74
74
|
if @request_option == :template
|
75
75
|
request_body = File.read('template/' + template_name + '.xml')
|
76
76
|
render_body = ERB.new(request_body).result(binding)
|
data/lib/soaspec/version.rb
CHANGED