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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: fdba31fc0514774f52929a5d74be081121608461
4
- data.tar.gz: 1a757b0ef66cab3fd56812fade4db84a95d8f972
3
+ metadata.gz: 802d57b54c80ef5ecbae8ebca1a2c0b259b17732
4
+ data.tar.gz: 236f51f5c4333e62021bf622edee84cd0cfd7bc9
5
5
  SHA512:
6
- metadata.gz: a1c489a68b27a6ede802285c3ad01e405d0073db617194cdbd64b9318d65eb6db3a94c32b6237a71186d1dcd65412c2523ff540bc1a0a752e0072841c5046135
7
- data.tar.gz: 90c94d2d84258a167e490380590a0adbbae4b3ba66f2aedf2687326374e250334ce07fbb7bdbd262259a62ff82a159ef6ba679d77aa62c4a6a7aa39a81d4a7c6
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
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- soaspec (0.0.15)
4
+ soaspec (0.0.16)
5
5
  rest-client (>= 2.0)
6
6
  rspec (~> 3.0)
7
7
  rspec-its (>= 1.2.0)
@@ -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 unless Soaspec::Environment.always_use_keys?
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)
@@ -1,3 +1,3 @@
1
1
  module Soaspec
2
- VERSION = '0.0.15'
2
+ VERSION = '0.0.16'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: soaspec
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.15
4
+ version: 0.0.16
5
5
  platform: ruby
6
6
  authors:
7
7
  - SamuelGarrattIQA