setsuzoku 0.10.10 → 0.10.11
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/Gemfile.lock +1 -1
- data/lib/setsuzoku/rspec/dynamic_spec_helper.rb +2 -4
- data/lib/setsuzoku/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: eb1a5e93f301eb0f7b13c155294e71c689a3492a445b8997321a6e1224f62189
|
|
4
|
+
data.tar.gz: e2d7a2fd0baee79485215db9dcd2a8ce055fb15cfe57661ff83e9c912f97f8ea
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dd505e2884888e977d7565e4da9dd55cfc86ad1139f6ec1823185cb2079f92213b18b0bb6b728914ee3c690d4cf29d4b4b7d49746cb2d7f80ac055f9a7169920
|
|
7
|
+
data.tar.gz: 245653ac837831f0a8112770f439c08f67aedeb5da8f5aa5269d6f3888d78acdae4b7d360022058425c1acaaa6668e342a24bde3fafa49d59705fb44f5cff72a
|
data/Gemfile.lock
CHANGED
|
@@ -265,11 +265,9 @@ module Setsuzoku
|
|
|
265
265
|
url, body = plugin.api_strategy.replace_dynamic_vars(full_url: url, req_params: req_params)
|
|
266
266
|
end
|
|
267
267
|
|
|
268
|
-
case
|
|
269
|
-
when :
|
|
270
|
-
#faraday sorts hash keys for some reason
|
|
268
|
+
case propz[:request_format]
|
|
269
|
+
when :file
|
|
271
270
|
body = body.to_json if body.is_a?(Hash)
|
|
272
|
-
body = JSON.parse(body).sort.to_h
|
|
273
271
|
end
|
|
274
272
|
[url, body]
|
|
275
273
|
rescue
|
data/lib/setsuzoku/version.rb
CHANGED