ezapi_client 1.1.0 → 1.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/ezapi_client/services/gen_data.rb +2 -2
- data/lib/ezapi_client/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: 8343c97fca91d4a7ef50f2ad560c3daa51fcb906613330219c93cada615732a5
|
4
|
+
data.tar.gz: 9c63a98c7779adeb2272374dc52ac13346659bb807a5de23ce21caa765485bd9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ccae802cd4940fb885f79211e5bcad07c5ffc3e3fd86495ab63f55db845ef9d02f02d811005a683f2754a38561241d25a987caed52b34724e5b95e6f0efda4d4
|
7
|
+
data.tar.gz: 0a6f7bb2d09d1695cbe65bdae7836534d6cda40f64a6ee1ab6e59377bed451242b7751cdb4aedb36fc21d8994f26d21fe474c801f984ac679ab93f0c90165825
|
data/CHANGELOG.md
CHANGED
@@ -2,6 +2,10 @@
|
|
2
2
|
All notable changes to this project will be documented in this file.
|
3
3
|
This project adheres to [Semantic Versioning](http://semver.org/).
|
4
4
|
|
5
|
+
## [1.1.1] - 2019-05-27
|
6
|
+
### Fixed
|
7
|
+
- No longer escape JSON values
|
8
|
+
|
5
9
|
## [1.1.0] - 2019-05-27
|
6
10
|
### Added
|
7
11
|
- Response `#raw_body` to access the raw, unparsed body directly
|
@@ -36,13 +36,13 @@ module EZAPIClient
|
|
36
36
|
username,
|
37
37
|
password,
|
38
38
|
reference_no,
|
39
|
-
|
39
|
+
%Q('#{json}'),
|
40
40
|
].join(" ")
|
41
41
|
end
|
42
42
|
|
43
43
|
def default_json
|
44
44
|
message.each_with_object({}) do |(key, value), hash|
|
45
|
-
hash[key.to_s.camelcase(:lower)] =
|
45
|
+
hash[key.to_s.camelcase(:lower)] = value
|
46
46
|
end.to_json
|
47
47
|
end
|
48
48
|
|
data/lib/ezapi_client/version.rb
CHANGED